提交 d7a365c3 编写于 作者: 0 06wj

fix resolveURL for url startWidth //

上级 8e4507d1
......@@ -632,8 +632,8 @@ THREE.GLTF2Loader = ( function () {
if ( typeof url !== 'string' || url === '' )
return '';
// Absolute URL
if ( /^https?:\/\//i.test( url ) ) {
// Absolute URL http://,https://,//
if ( /^(https?:)?\/\//i.test( url ) ) {
return url;
......
......@@ -644,8 +644,8 @@ THREE.GLTFLoader = ( function () {
if ( typeof url !== 'string' || url === '' )
return '';
// Absolute URL
if ( /^https?:\/\//i.test( url ) ) {
// Absolute URL http://,https://,//
if ( /^(https?:)?\/\//i.test( url ) ) {
return url;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册