We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d6e8600 commit 1f21a7dCopy full SHA for 1f21a7d
1 file changed
src/loader/File.js
@@ -94,7 +94,7 @@ var File = new Class({
94
{
95
this.url = loader.path + loadKey + '.' + GetFastValue(fileConfig, 'extension', '');
96
}
97
- else if (typeof(this.url) !== 'function' && this.url.indexOf('blob:') !== 0 && this.url.indexOf('data:') !== 0)
+ else if (typeof this.url === 'string' && this.url.indexOf('blob:') !== 0 && this.url.indexOf('data:') !== 0)
98
99
this.url = loader.path + this.url;
100
0 commit comments