[API] Enable example bundles

Enable example bundles in the default build. Addresses regression
in development environments introduced by #1212.
This commit is contained in:
Victor Woeltjen 2016-10-12 13:13:47 -07:00
parent 7b218c7f02
commit 1bf7c06b1e

View File

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