mirror of
https://github.com/photonstorm/phaser
synced 2024-11-27 15:12:18 +00:00
Merge pull request #3233 from samme/samme-patch-1
Fix wrong Extend target in MergeXHRSettings
This commit is contained in:
commit
39c415424d
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…
Reference in a new issue