소스 검색

Address review comments (brackets)

Christopher Cook 7 년 전
부모
커밋
06fe73a904
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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;
 		}