소스 검색

BinaryLoader: Removed double slash.

Mr.doob 11 년 전
부모
커밋
4d75118300
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      examples/js/loaders/BinaryLoader.js

+ 1 - 1
examples/js/loaders/BinaryLoader.js

@@ -69,7 +69,7 @@ THREE.BinaryLoader.prototype.loadAjaxJSON = function ( context, url, callback, t
 THREE.BinaryLoader.prototype.loadAjaxBuffers = function ( json, callback, binaryPath, texturePath, callbackProgress ) {
 
 	var xhr = new XMLHttpRequest(),
-		url = binaryPath + "/" + json.buffers;
+		url = binaryPath + json.buffers;
 
 	xhr.addEventListener( 'load', function ( event ) {