2016-01-06 18:59:21 +00:00
|
|
|
/*****************************************************************************
|
2016-07-12 23:21:58 +00:00
|
|
|
* Open MCT, Copyright (c) 2014-2016, United States Government
|
2016-01-06 18:59:21 +00:00
|
|
|
* as represented by the Administrator of the National Aeronautics and Space
|
|
|
|
* Administration. All rights reserved.
|
|
|
|
*
|
2016-07-12 23:21:58 +00:00
|
|
|
* Open MCT is licensed under the Apache License, Version 2.0 (the
|
2016-01-06 18:59:21 +00:00
|
|
|
* "License"); you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0.
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
* License for the specific language governing permissions and limitations
|
|
|
|
* under the License.
|
|
|
|
*
|
2016-07-12 23:21:58 +00:00
|
|
|
* Open MCT includes source code licensed under additional open source
|
2016-01-06 18:59:21 +00:00
|
|
|
* licenses. See the Open Source Licenses file (LICENSES.md) included with
|
|
|
|
* this source code distribution or the Licensing information page available
|
|
|
|
* at runtime from the About dialog for additional information.
|
|
|
|
*****************************************************************************/
|
2016-03-04 18:27:59 +00:00
|
|
|
/*global requirejs*/
|
2016-01-06 18:59:21 +00:00
|
|
|
|
|
|
|
requirejs.config({
|
|
|
|
"paths": {
|
2016-01-07 23:29:19 +00:00
|
|
|
"legacyRegistry": "src/legacyRegistry",
|
2016-01-28 18:55:22 +00:00
|
|
|
"angular": "bower_components/angular/angular.min",
|
|
|
|
"angular-route": "bower_components/angular-route/angular-route.min",
|
2016-02-05 20:21:06 +00:00
|
|
|
"csv": "bower_components/comma-separated-values/csv.min",
|
2016-05-27 18:43:35 +00:00
|
|
|
"EventEmitter": "bower_components/eventemitter3/index",
|
2016-09-13 17:33:32 +00:00
|
|
|
"es6-promise": "bower_components/es6-promise/es6-promise.min",
|
2016-08-31 14:03:48 +00:00
|
|
|
"html2canvas": "bower_components/html2canvas/build/html2canvas.min",
|
2016-09-27 23:40:29 +00:00
|
|
|
"jsPDF": "bower_components/jspdf/dist/jspdf.debug",
|
2016-01-28 18:55:22 +00:00
|
|
|
"moment": "bower_components/moment/moment",
|
|
|
|
"moment-duration-format": "bower_components/moment-duration-format/lib/moment-duration-format",
|
2016-02-05 22:39:24 +00:00
|
|
|
"saveAs": "bower_components/FileSaver.js/FileSaver.min",
|
2016-01-28 19:12:18 +00:00
|
|
|
"screenfull": "bower_components/screenfull/dist/screenfull.min",
|
2016-01-28 19:41:14 +00:00
|
|
|
"text": "bower_components/text/text",
|
2016-03-11 20:38:40 +00:00
|
|
|
"uuid": "bower_components/node-uuid/uuid",
|
2016-06-17 23:54:32 +00:00
|
|
|
"zepto": "bower_components/zepto/zepto.min",
|
|
|
|
"lodash": "bower_components/lodash/lodash"
|
2016-01-06 18:59:21 +00:00
|
|
|
},
|
|
|
|
"shim": {
|
|
|
|
"angular": {
|
|
|
|
"exports": "angular"
|
2016-01-28 18:55:22 +00:00
|
|
|
},
|
|
|
|
"angular-route": {
|
2016-05-19 18:29:13 +00:00
|
|
|
"deps": ["angular"]
|
2016-01-28 18:55:22 +00:00
|
|
|
},
|
2016-05-27 18:43:35 +00:00
|
|
|
"EventEmitter": {
|
|
|
|
"exports": "EventEmitter"
|
|
|
|
},
|
2016-08-31 14:03:48 +00:00
|
|
|
"html2canvas": {
|
|
|
|
"exports": "html2canvas"
|
|
|
|
},
|
2016-09-01 18:11:26 +00:00
|
|
|
"jsPDF": {
|
|
|
|
"exports": "jsPDF"
|
|
|
|
},
|
2016-01-28 18:55:22 +00:00
|
|
|
"moment-duration-format": {
|
2016-05-19 18:29:13 +00:00
|
|
|
"deps": ["moment"]
|
2016-03-04 19:05:08 +00:00
|
|
|
},
|
|
|
|
"screenfull": {
|
|
|
|
"exports": "screenfull"
|
2016-04-08 23:05:04 +00:00
|
|
|
},
|
2016-03-11 22:33:05 +00:00
|
|
|
"zepto": {
|
|
|
|
"exports": "Zepto"
|
2016-07-07 21:30:45 +00:00
|
|
|
},
|
|
|
|
"lodash": {
|
|
|
|
"exports": "lodash"
|
2016-01-06 18:59:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
define([
|
2016-09-23 22:07:03 +00:00
|
|
|
'./src/openmct',
|
2016-01-06 18:59:21 +00:00
|
|
|
'./platform/framework/src/Main',
|
2016-07-25 21:38:44 +00:00
|
|
|
'./src/defaultRegistry',
|
|
|
|
'./src/MCT'
|
|
|
|
], function (Main, defaultRegistry, MCT) {
|
2016-05-27 18:49:43 +00:00
|
|
|
var mct = new MCT();
|
|
|
|
|
2016-07-25 21:38:44 +00:00
|
|
|
mct.legacyRegistry = defaultRegistry;
|
2016-09-29 17:47:52 +00:00
|
|
|
|
2016-07-07 21:25:23 +00:00
|
|
|
mct.run = function (domElement) {
|
|
|
|
if (!domElement) { domElement = document.body; }
|
|
|
|
var appDiv = document.createElement('div');
|
|
|
|
appDiv.setAttribute('ng-view', '');
|
|
|
|
appDiv.className = 'user-environ';
|
|
|
|
domElement.appendChild(appDiv);
|
|
|
|
mct.start();
|
|
|
|
};
|
2016-09-29 17:47:52 +00:00
|
|
|
|
2016-05-27 18:49:43 +00:00
|
|
|
mct.on('start', function () {
|
2016-07-25 21:38:44 +00:00
|
|
|
return new Main().run(defaultRegistry);
|
2016-05-27 18:49:43 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
return mct;
|
2016-09-29 17:54:08 +00:00
|
|
|
|
2016-04-08 23:05:04 +00:00
|
|
|
});
|