Browse Source

Loaders clean up.

Mr.doob 13 years ago
parent
commit
b00aa9b692
2 changed files with 1 additions and 2 deletions
  1. 0 1
      src/loaders/BinaryLoader.js
  2. 1 1
      src/loaders/Loader.js

+ 0 - 1
src/loaders/BinaryLoader.js

@@ -10,7 +10,6 @@ THREE.BinaryLoader = function ( showStatus ) {
 
 THREE.BinaryLoader.prototype = new THREE.Loader();
 THREE.BinaryLoader.prototype.constructor = THREE.BinaryLoader;
-THREE.BinaryLoader.prototype.supr = THREE.Loader.prototype;
 
 
 // Load models generated by slim OBJ converter with BINARY option (converter_obj_three_slim.py -t binary)

+ 1 - 1
src/loaders/Loader.js

@@ -8,7 +8,7 @@ THREE.Loader = function ( showStatus ) {
 	this.statusDomElement = showStatus ? THREE.Loader.prototype.addStatusElement() : null;
 
 	this.onLoadStart = function () {};
-	this.onLoadProgress = function() {};
+	this.onLoadProgress = function () {};
 	this.onLoadComplete = function () {};
 
 };