mirror of
https://github.com/photonstorm/phaser
synced 2025-02-17 14:38:30 +00:00
Fix wrong Extend target in MergeXHRSettings
This commit is contained in:
parent
2892f20e5c
commit
633acec058
1 changed files with 1 additions and 1 deletions
|
@ -23,7 +23,7 @@ var XHRSettings = require('./XHRSettings');
|
|||
*/
|
||||
var MergeXHRSettings = function (global, local)
|
||||
{
|
||||
var output = (global === undefined) ? XHRSettings() : Extend(global);
|
||||
var output = (global === undefined) ? XHRSettings() : Extend({}, global);
|
||||
|
||||
if (local)
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue