mirror of
https://github.com/photonstorm/phaser
synced 2025-02-25 20:07:08 +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 MergeXHRSettings = function (global, local)
|
||||||
{
|
{
|
||||||
var output = (global === undefined) ? XHRSettings() : Extend(global);
|
var output = (global === undefined) ? XHRSettings() : Extend({}, global);
|
||||||
|
|
||||||
if (local)
|
if (local)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Reference in a new issue