Explorar el Código

Address review comments (brackets)

Christopher Cook hace 7 años
padre
commit
06fe73a904
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      examples/js/exporters/GLTFExporter.js

+ 1 - 1
examples/js/exporters/GLTFExporter.js

@@ -196,7 +196,7 @@ THREE.GLTFExporter.prototype = {
 
 			var remainder = bufferSize % boundary;
 			
-			var padding =  (remainder === 0 ) ? 0 : boundary - remainder;
+			var padding =  remainder === 0 ? 0 : boundary - remainder;
 
 			return bufferSize + padding;
 		}