Merge pull request #1243 from nasa/api-swg-enable

[API] Enable example bundles
This commit is contained in:
Andrew Henry 2016-10-12 13:54:12 -07:00 committed by GitHub
commit db362a0efc

View File

@ -29,11 +29,14 @@
</script> </script>
<script> <script>
require(['openmct'], function (openmct) { require(['openmct'], function (openmct) {
require([ [
'./example/imagery/bundle', 'example/imagery',
'./example/eventGenerator/bundle', 'example/eventGenerator',
'./example/generator/bundle' 'example/generator'
], openmct.start.bind(openmct)); ].forEach(
openmct.legacyRegistry.enable.bind(openmct.legacyRegistry)
);
openmct.start();
}); });
</script> </script>
<link rel="stylesheet" href="platform/commonUI/general/res/css/startup-base.css"> <link rel="stylesheet" href="platform/commonUI/general/res/css/startup-base.css">