diff options
author | Ariel Flesler <aflesler@gmail.com> | 2009-09-14 22:34:04 +0000 |
---|---|---|
committer | Ariel Flesler <aflesler@gmail.com> | 2009-09-14 22:34:04 +0000 |
commit | a2731202917f8e90cad94ee574241d1626dc7fb6 (patch) | |
tree | 6a371579cc9792809fa90f45faafeedcc19545ff /src | |
parent | 173c1477ae6efc4c2eeb7131ba0646c4e1323975 (diff) | |
download | jquery-a2731202917f8e90cad94ee574241d1626dc7fb6.tar.gz jquery-a2731202917f8e90cad94ee574241d1626dc7fb6.zip |
jquery data: closes #5224. Exposing the expando.
Diffstat (limited to 'src')
-rw-r--r-- | src/data.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/data.js b/src/data.js index 03116e4b1..d03d51f2f 100644 --- a/src/data.js +++ b/src/data.js @@ -2,6 +2,8 @@ var expando = "jQuery" + now(), uuid = 0, windowData = {}; jQuery.extend({
cache: {},
+
+ expando:expando,
data: function( elem, name, data ) {
elem = elem == window ?
|