mirror of
https://github.com/photonstorm/phaser
synced 2024-11-24 05:33:35 +00:00
Fixed linting issue
This commit is contained in:
parent
95e44527c5
commit
135db3089e
1 changed files with 2 additions and 2 deletions
|
@ -64,14 +64,14 @@ var ImageFile = new Class({
|
|||
function ImageFile (key, url, path, xhrSettings, config)
|
||||
{
|
||||
var fileKey = (typeof key === 'string') ? key : GetFastValue(key, 'key', '');
|
||||
if (url === undefined) url = GetFastValue(key, 'file');
|
||||
var fileUrl = (url === undefined) ? GetFastValue(key, 'file') : url;
|
||||
|
||||
var fileConfig = {
|
||||
type: 'image',
|
||||
extension: GetFastValue(key, 'extension', 'png'),
|
||||
responseType: 'blob',
|
||||
key: fileKey,
|
||||
url: url,
|
||||
url: fileUrl,
|
||||
path: path,
|
||||
xhrSettings: GetFastValue(key, 'xhr', xhrSettings),
|
||||
config: GetFastValue(key, 'config', config)
|
||||
|
|
Loading…
Reference in a new issue