Skip to content

Commit

Permalink
Make .data(Object) extend the existing data object. Fixes #6692.
Browse files Browse the repository at this point in the history
  • Loading branch information
jeresig committed Sep 22, 2010
1 parent 626624a commit 0b4b3ee
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
6 changes: 4 additions & 2 deletions src/data.js
Expand Up @@ -52,9 +52,10 @@ jQuery.extend({
// want to manipulate it.
if ( typeof name === "object" ) {
if ( isNode ) {
cache[ id ] = jQuery.extend(true, {}, name);
cache[ id ] = jQuery.extend(cache[ id ], name);

} else {
store = jQuery.extend(true, {}, name);
store = jQuery.extend(cache[ id ], name);
cache[ id ] = function() {
return store;
};
Expand All @@ -63,6 +64,7 @@ jQuery.extend({
} else if ( !cache[ id ] ) {
if ( isNode ) {
cache[ id ] = {};

} else {
store = {};
cache[ id ] = function() {
Expand Down
6 changes: 4 additions & 2 deletions test/unit/data.js
Expand Up @@ -25,7 +25,7 @@ test("expando", function(){
});

test("jQuery.data", function() {
expect(12);
expect(13);
var div = document.createElement("div");

ok( jQuery.data(div, "test") === undefined, "Check for no data exists" );
Expand All @@ -47,9 +47,11 @@ test("jQuery.data", function() {
jQuery.data(div, "test", null);
ok( jQuery.data(div, "test") === null, "Check for null data");

jQuery.data(div, "test3", "orig");
jQuery.data(div, { "test": "in", "test2": "in2" });
equals( jQuery.data(div, "test"), "in", "Verify setting an object in data." );
equals( jQuery.data(div, "test2"), "in2", "Verify setting an object in data." );
equals( jQuery.data(div, "test3"), "orig", "Verify original not overwritten." );

var obj = {};
jQuery.data( obj, "prop", true );
Expand All @@ -61,7 +63,7 @@ test("jQuery.data", function() {
});

test(".data()", function() {
expect(1);
expect(2);

var div = jQuery("#foo");
div.data("test", "success");
Expand Down

0 comments on commit 0b4b3ee

Please sign in to comment.