summaryrefslogtreecommitdiffstats
path: root/o3d/samples/o3djs/util.js
diff options
context:
space:
mode:
Diffstat (limited to 'o3d/samples/o3djs/util.js')
-rw-r--r--o3d/samples/o3djs/util.js3
1 files changed, 1 insertions, 2 deletions
diff --git a/o3d/samples/o3djs/util.js b/o3d/samples/o3djs/util.js
index de283ba..b898a24 100644
--- a/o3d/samples/o3djs/util.js
+++ b/o3d/samples/o3djs/util.js
@@ -310,7 +310,7 @@ o3djs.util.requiredVersionAvailable = function(requiredVersion) {
var haveParts = version.split('.');
var requiredParts = requiredVersion.split('.');
if (requiredParts.length > 4) {
- throw RangeError('requiredVersion has more than 4 parts!');
+ throw Error('requiredVersion has more than 4 parts!');
}
for (var pp = 0; pp < requiredParts.length; ++pp) {
var have = parseInt(haveParts[pp], 10);
@@ -511,7 +511,6 @@ o3djs.util.getElementContentById = function(id) {
throw 'getElementContentById does not no how to get content from a ' +
node.tagName + ' element';
}
- return node.value;
};
/**