summaryrefslogtreecommitdiff
path: root/js/src/Ice/ModuleRegistry.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/Ice/ModuleRegistry.js')
-rw-r--r--js/src/Ice/ModuleRegistry.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/js/src/Ice/ModuleRegistry.js b/js/src/Ice/ModuleRegistry.js
index e2b1482d648..417e54eee30 100644
--- a/js/src/Ice/ModuleRegistry.js
+++ b/js/src/Ice/ModuleRegistry.js
@@ -32,13 +32,13 @@ var __M =
},
type: function(scoped)
{
- if(scoped == undefined)
+ if(scoped === undefined)
{
return undefined;
}
var components = scoped.split(".");
var T = __modules__;
-
+
for(var i = 0, length = components.length; i < length; ++i)
{
T = T[components[i]];