aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorjeresig <jeresig@gmail.com>2010-02-27 09:49:58 -0500
committerjeresig <jeresig@gmail.com>2010-02-27 09:49:58 -0500
commita49e6b63131e292bc1c31ee98b300ba87ce99162 (patch)
treea7931668c7f71e7b73d6f341489a79448a7c146c /src
parent42568db4c414d4435f2f7e89be87d66645c42e1c (diff)
downloadjquery-a49e6b63131e292bc1c31ee98b300ba87ce99162.tar.gz
jquery-a49e6b63131e292bc1c31ee98b300ba87ce99162.zip
Attach data directly to plain objects, no reason to use the central jQuery.cache. Fixes #6189.
Diffstat (limited to 'src')
-rw-r--r--src/data.js27
1 files changed, 17 insertions, 10 deletions
diff --git a/src/data.js b/src/data.js
index a97ac0419..109d55686 100644
--- a/src/data.js
+++ b/src/data.js
@@ -3,7 +3,7 @@ var expando = "jQuery" + now(), uuid = 0, windowData = {};
jQuery.extend({
cache: {},
- expando:expando,
+ expando: expando,
// The following elements throw uncatchable exceptions if you
// attempt to add expando properties to them.
@@ -22,25 +22,29 @@ jQuery.extend({
windowData :
elem;
- var id = elem[ expando ], cache = jQuery.cache, thisCache;
+ var id = elem[ jQuery.expando ], cache = jQuery.cache, thisCache,
+ isNode = elem.nodeType;
if ( !id && typeof name === "string" && data === undefined ) {
return;
}
+ // Get the data from the object directly
+ if ( !isNode ) {
+ cache = elem;
+ id = jQuery.expando;
+
// Compute a unique ID for the element
- if ( !id ) {
- id = ++uuid;
+ } else if ( !id ) {
+ elem[ jQuery.expando ] = id = ++uuid;
}
// Avoid generating a new cache unless none exists and we
// want to manipulate it.
if ( typeof name === "object" ) {
- elem[ expando ] = id;
- thisCache = cache[ id ] = jQuery.extend(true, {}, name);
+ cache[ id ] = jQuery.extend(true, {}, name);
} else if ( !cache[ id ] ) {
- elem[ expando ] = id;
cache[ id ] = {};
}
@@ -63,7 +67,8 @@ jQuery.extend({
windowData :
elem;
- var id = elem[ expando ], cache = jQuery.cache, thisCache = cache[ id ];
+ var id = elem[ jQuery.expando ], cache = jQuery.cache,
+ isNode = elem.nodeType, thisCache = isNode ? cache[ id ] : id;
// If we want to remove a specific section of the element's data
if ( name ) {
@@ -79,7 +84,7 @@ jQuery.extend({
// Otherwise, we want to remove all of the element's data
} else {
- if ( jQuery.support.deleteExpando ) {
+ if ( jQuery.support.deleteExpando || !isNode ) {
delete elem[ jQuery.expando ];
} else if ( elem.removeAttribute ) {
@@ -87,7 +92,9 @@ jQuery.extend({
}
// Completely remove the data cache
- delete cache[ id ];
+ if ( isNode ) {
+ delete cache[ id ];
+ }
}
}
});