Adding in the change recommended by Alexander Farkas to fix some bugs in the change delegation logic. Fixes #5851.
This commit is contained in:
parent
257a4693f4
commit
435772e29b
1 changed files with 2 additions and 2 deletions
|
@ -670,9 +670,9 @@ function testChange( e ) {
|
||||||
jQuery.data( elem, "_change_data", val );
|
jQuery.data( elem, "_change_data", val );
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( elem.type !== "select" && (data != null || val) ) {
|
if ( data != null || val ) {
|
||||||
e.type = "change";
|
e.type = "change";
|
||||||
return jQuery.event.trigger( e, arguments[1], this );
|
return jQuery.event.trigger( e, arguments[1], elem );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue