mirror of
https://github.com/nasa/openmct.git
synced 2025-06-11 20:01:41 +00:00
[Build] Update dependency references
...to reflect movement of third-party libraries to bower_components.
This commit is contained in:
@ -26,7 +26,7 @@
|
|||||||
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
|
||||||
<title></title>
|
<title></title>
|
||||||
<script type="text/javascript"
|
<script type="text/javascript"
|
||||||
src="platform/framework/lib/require.js"
|
src="bower_components/requirejs/require.js"
|
||||||
data-main="main.js">
|
data-main="main.js">
|
||||||
</script>
|
</script>
|
||||||
<link rel="icon" type="image/png" href="platform/commonUI/general/res/images/favicons/favicon-32x32.png" sizes="32x32">
|
<link rel="icon" type="image/png" href="platform/commonUI/general/res/images/favicons/favicon-32x32.png" sizes="32x32">
|
||||||
|
@ -22,7 +22,7 @@
|
|||||||
/*global define*/
|
/*global define*/
|
||||||
|
|
||||||
define(
|
define(
|
||||||
["../../lib/uuid", "./Identifier"],
|
["uuid", "./Identifier"],
|
||||||
function (uuid, Identifier) {
|
function (uuid, Identifier) {
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
|
@ -22,7 +22,7 @@
|
|||||||
/*global define,moment*/
|
/*global define,moment*/
|
||||||
|
|
||||||
define(
|
define(
|
||||||
["../../lib/moment.min"],
|
["moment"],
|
||||||
function () {
|
function () {
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
|
@ -21,14 +21,6 @@
|
|||||||
*****************************************************************************/
|
*****************************************************************************/
|
||||||
/*global define, window, requirejs*/
|
/*global define, window, requirejs*/
|
||||||
|
|
||||||
requirejs.config({
|
|
||||||
shim: {
|
|
||||||
'platform/framework/lib/angular-route.min': {
|
|
||||||
deps: [ 'angular' ]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Implements the framework layer, which handles the loading of bundles
|
* Implements the framework layer, which handles the loading of bundles
|
||||||
* and the wiring-together of the extensions they expose.
|
* and the wiring-together of the extensions they expose.
|
||||||
@ -37,10 +29,10 @@ requirejs.config({
|
|||||||
define(
|
define(
|
||||||
[
|
[
|
||||||
'require',
|
'require',
|
||||||
'../lib/es6-promise-2.0.0.min',
|
'es6-promise',
|
||||||
'./FrameworkLayer',
|
'./FrameworkLayer',
|
||||||
'angular',
|
'angular',
|
||||||
'../lib/angular-route.min'
|
'angular-route'
|
||||||
],
|
],
|
||||||
function (
|
function (
|
||||||
require,
|
require,
|
||||||
|
Reference in New Issue
Block a user