knockout.js 427 B

12345678910111213141516171819
  1. /*global define*/
  2. define([
  3. './knockout-3.2.0',
  4. './knockout-es5',
  5. '../Widgets/SvgPathBindingHandler'
  6. ], function(
  7. knockout,
  8. knockout_es5,
  9. SvgPathBindingHandler) {
  10. "use strict";
  11. // install the Knockout-ES5 plugin
  12. knockout_es5.attachToKo(knockout);
  13. // Register all Cesium binding handlers
  14. SvgPathBindingHandler.register(knockout);
  15. return knockout;
  16. });