aboutsummaryrefslogtreecommitdiff
path: root/node_modules/montage/require
diff options
context:
space:
mode:
authorhwc4872012-05-31 17:11:08 -0700
committerhwc4872012-05-31 17:11:08 -0700
commit1c445cf5d905f79937998cf2f1115594ea8c1074 (patch)
tree35271ad7ffec86fde9102af3dd954fa3a2974582 /node_modules/montage/require
parent335ce503996e3ccbd2909086328d0a31fbd03370 (diff)
parent6042bdc5f2aada4412912fd01602d32c9088dc26 (diff)
downloadninja-1c445cf5d905f79937998cf2f1115594ea8c1074.tar.gz
Merge branch 'master' of github.com:Motorola-Mobility/ninja-internal into Textures
Conflicts: js/io/system/ninjalibrary.json
Diffstat (limited to 'node_modules/montage/require')
-rwxr-xr-xnode_modules/montage/require/browser.js2
-rwxr-xr-xnode_modules/montage/require/require.js20
2 files changed, 6 insertions, 16 deletions
diff --git a/node_modules/montage/require/browser.js b/node_modules/montage/require/browser.js
index f4a11d97..a6a8af5a 100755
--- a/node_modules/montage/require/browser.js
+++ b/node_modules/montage/require/browser.js
@@ -82,7 +82,7 @@ if (global.navigator && global.navigator.userAgent.indexOf("Firefox") >= 0) {
82} 82}
83 83
84var __FILE__String = "__FILE__", 84var __FILE__String = "__FILE__",
85 DoubleUnderscoreString = "__" 85 DoubleUnderscoreString = "__",
86 globalEvalConstantA = "(function ", 86 globalEvalConstantA = "(function ",
87 globalEvalConstantB = "(require, exports, module) {", 87 globalEvalConstantB = "(require, exports, module) {",
88 globalEvalConstantC = "//*/\n})\n//@ sourceURL="; 88 globalEvalConstantC = "//*/\n})\n//@ sourceURL=";
diff --git a/node_modules/montage/require/require.js b/node_modules/montage/require/require.js
index 4ea8a46d..eaa2d9fc 100755
--- a/node_modules/montage/require/require.js
+++ b/node_modules/montage/require/require.js
@@ -372,17 +372,9 @@
372 function normalizeDependency(dependency, config, name) { 372 function normalizeDependency(dependency, config, name) {
373 config = config || {}; 373 config = config || {};
374 if (typeof dependency === "string") { 374 if (typeof dependency === "string") {
375 if (dependency.indexOf("@") >= 0) { 375 dependency = {
376 var parts = dependency.split("@"); 376 location: dependency
377 dependency = { 377 };
378 name: parts[0] || name,
379 version: parts[1]
380 };
381 } else {
382 dependency = {
383 location: dependency
384 };
385 }
386 } 378 }
387 // if the named dependency has already been found at another 379 // if the named dependency has already been found at another
388 // location, refer to the same eventual instance 380 // location, refer to the same eventual instance
@@ -457,7 +449,7 @@
457 var overlay = description.overlay || {}; 449 var overlay = description.overlay || {};
458 Require.overlays.forEach(function (engine) { 450 Require.overlays.forEach(function (engine) {
459 if (overlay[engine]) { 451 if (overlay[engine]) {
460 layer = overlay[engine]; 452 var layer = overlay[engine];
461 for (var name in layer) { 453 for (var name in layer) {
462 description[name] = layer[name]; 454 description[name] = layer[name];
463 } 455 }
@@ -468,9 +460,7 @@
468 // directories 460 // directories
469 description.directories = description.directories || {}; 461 description.directories = description.directories || {};
470 description.directories.lib = 462 description.directories.lib =
471 description.directories.lib === void 0 463 description.directories.lib === void 0 ? "." : description.directories.lib;
472 ? "."
473 : description.directories.lib;
474 var lib = description.directories.lib; 464 var lib = description.directories.lib;
475 // lib 465 // lib
476 config.lib = URL.resolve(location, "./" + lib); 466 config.lib = URL.resolve(location, "./" + lib);