mirror of
https://github.com/photonstorm/phaser
synced 2024-11-24 13:43:26 +00:00
parent
d6e8600766
commit
1f21a7d3be
1 changed files with 1 additions and 1 deletions
|
@ -94,7 +94,7 @@ var File = new Class({
|
|||
{
|
||||
this.url = loader.path + loadKey + '.' + GetFastValue(fileConfig, 'extension', '');
|
||||
}
|
||||
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)
|
||||
{
|
||||
this.url = loader.path + this.url;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue