Browse Source

Added whitespace.

tschw 10 years ago
parent
commit
9220856660
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/loaders/ObjectLoader.js

+ 1 - 1
src/loaders/ObjectLoader.js

@@ -295,7 +295,7 @@ THREE.ObjectLoader.prototype = {
 
 	parseConstant: function ( json ) {
 
-		return typeof( json ) === 'number' ? json : THREE[json];
+		return typeof( json ) === 'number' ? json : THREE[ json ];
 
 	},