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:
7a3afc3
)
No reason to limit the initial change data store to just radio elements. Fixes #5851.
author
jeresig
<jeresig@gmail.com>
Wed, 27 Jan 2010 15:06:50 +0000
(10:06 -0500)
committer
jeresig
<jeresig@gmail.com>
Wed, 27 Jan 2010 15:06:50 +0000
(10:06 -0500)
src/event.js
patch
|
blob
|
history
diff --git
a/src/event.js
b/src/event.js
index
58f7a31
..
efefe57
100644
(file)
--- a/
src/event.js
+++ b/
src/event.js
@@
-728,10
+728,7
@@
jQuery.event.special.change = {
// information/focus[in] is not needed anymore
beforeactivate: function( e ) {
var elem = e.target;
-
- if ( elem.nodeName.toLowerCase() === "input" && elem.type === "radio" ) {
- jQuery.data( elem, "_change_data", getVal(elem) );
- }
+ jQuery.data( elem, "_change_data", getVal(elem) );
}
},
setup: function( data, namespaces, fn ) {