diff options
author | Robert Katic <robert.katic@gmail.com> | 2010-01-30 19:50:49 +0100 |
---|---|---|
committer | jeresig <jeresig@gmail.com> | 2010-09-23 12:07:06 -0400 |
commit | 694b625c92c764621532dba20cbf943302b52d5a (patch) | |
tree | a7b206af24b8d458d6ac4d1fe05f22faf8700ded | |
parent | 2f603359fecca5b4873c45775b293702a2c651e3 (diff) | |
download | jquery-694b625c92c764621532dba20cbf943302b52d5a.tar.gz jquery-694b625c92c764621532dba20cbf943302b52d5a.zip |
Ensured that arrays are not considered same as plain object on deep extending. Fixes #5991.
-rw-r--r-- | src/core.js | 15 | ||||
-rw-r--r-- | test/unit/core.js | 3 |
2 files changed, 11 insertions, 7 deletions
diff --git a/src/core.js b/src/core.js index b747e5bea..23d40bd09 100644 --- a/src/core.js +++ b/src/core.js @@ -306,7 +306,7 @@ jQuery.fn.init.prototype = jQuery.fn; jQuery.extend = jQuery.fn.extend = function() { // copy reference to target object - var target = arguments[0] || {}, i = 1, length = arguments.length, deep = false, options, name, src, copy; + var target = arguments[0] || {}, i = 1, length = arguments.length, deep = false, options, name, src, copy, copyIsArray; // Handle a deep copy situation if ( typeof target === "boolean" ) { @@ -340,10 +340,15 @@ jQuery.extend = jQuery.fn.extend = function() { continue; } - // Recurse if we're merging object literal values or arrays - if ( deep && copy && ( jQuery.isPlainObject(copy) || jQuery.isArray(copy) ) ) { - var clone = src && ( jQuery.isPlainObject(src) || jQuery.isArray(src) ) ? src - : jQuery.isArray(copy) ? [] : {}; + // Recurse if we're merging plain objects or arrays + if ( deep && copy && ( jQuery.isPlainObject(copy) || (copyIsArray = jQuery.isArray(copy)) ) ) { + if ( copyIsArray ) { + copyIsArray = false; + clone = src && jQuery.isArray(src) ? src : []; + + } else { + clone = src && jQuery.isPlainObject(src) ? src : {}; + } // Never move original objects, clone them target[ name ] = jQuery.extend( deep, clone, copy ); diff --git a/test/unit/core.js b/test/unit/core.js index eec3d7cdf..81bca1072 100644 --- a/test/unit/core.js +++ b/test/unit/core.js @@ -661,7 +661,7 @@ test("jQuery.merge()", function() { }); test("jQuery.extend(Object, Object)", function() { - expect(27); + expect(26); var settings = { xnumber1: 5, xnumber2: 7, xstring1: "peter", xstring2: "pan" }, options = { xnumber2: 1, xstring2: "x", xxx: "newstring" }, @@ -688,7 +688,6 @@ test("jQuery.extend(Object, Object)", function() { same( deep2.foo, deep2copy.foo, "Check if not deep2: options must not be modified" ); equals( deep1.foo2, document, "Make sure that a deep clone was not attempted on the document" ); - ok( jQuery.extend(true, [], arr) !== arr, "Deep extend of array must clone array" ); ok( jQuery.extend(true, {}, nestedarray).arr !== arr, "Deep extend of object must clone child array" ); var empty = {}; |