git.asbjorn.biz
/
jquery.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
46ee77b
)
Fixed an issue with how .data() was expecting output (trigger now returns exact outpu...
author
John Resig
<jeresig@gmail.com>
Fri, 19 Dec 2008 06:49:03 +0000
(06:49 +0000)
committer
John Resig
<jeresig@gmail.com>
Fri, 19 Dec 2008 06:49:03 +0000
(06:49 +0000)
src/core.js
patch
|
blob
|
history
diff --git
a/src/core.js
b/src/core.js
index
c625d85
..
685ca2b
100644
(file)
--- a/
src/core.js
+++ b/
src/core.js
@@
-482,7
+482,7
@@
jQuery.fn = jQuery.prototype = {
if ( data === undefined && this.length )
data = jQuery.data( this[0], key );
- return data === undefined && parts[1] ?
+ return data == null && parts[1] ?
this.data( parts[0] ) :
data;
} else