You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
343 B
JavaScript
12 lines
343 B
JavaScript
import knockout from './knockout-3.5.1.js';
|
|
import knockout_es5 from './knockout-es5.js';
|
|
import SvgPathBindingHandler from '../Widgets/SvgPathBindingHandler.js';
|
|
|
|
// install the Knockout-ES5 plugin
|
|
knockout_es5.attachToKo(knockout);
|
|
|
|
// Register all Cesium binding handlers
|
|
SvgPathBindingHandler.register(knockout);
|
|
|
|
export default knockout;
|