Explorar o código

this allows ie10 to load STL files

OpenShift guest %!s(int64=12) %!d(string=hai) anos
pai
achega
338f69c212
Modificáronse 1 ficheiros con 10 adicións e 1 borrados
  1. 10 1
      editor/js/Loader.js

+ 10 - 1
editor/js/Loader.js

@@ -310,8 +310,17 @@ var Loader = function ( signals ) {
           signals.objectSelected.dispatch( mesh );
 
         }, false );
-        reader.readAsBinaryString(file);
+        
+        if (reader.readAsBinaryString) {
 
+            reader.readAsBinaryStrings(file);
+
+        } else {
+            
+            reader.readAsArrayBuffer(file);
+            
+        }
+            
         break;
 
       /*