Simplify the special change/submit event removal logic, per Scott's suggestion in 5267824aa3
.
This commit is contained in:
parent
5267824aa3
commit
35c379075c
|
@ -677,8 +677,7 @@ if ( !jQuery.support.submitBubbles ) {
|
|||
},
|
||||
|
||||
teardown: function( namespaces ) {
|
||||
jQuery.event.remove( this, "click.specialSubmit" );
|
||||
jQuery.event.remove( this, "keypress.specialSubmit" );
|
||||
jQuery.event.remove( this, ".specialSubmit" );
|
||||
}
|
||||
};
|
||||
|
||||
|
@ -778,9 +777,7 @@ if ( !jQuery.support.changeBubbles ) {
|
|||
},
|
||||
|
||||
teardown: function( namespaces ) {
|
||||
for ( var type in changeFilters ) {
|
||||
jQuery.event.remove( this, type + ".specialChange", changeFilters[type] );
|
||||
}
|
||||
jQuery.event.remove( this, ".specialChange" );
|
||||
|
||||
return formElems.test( this.nodeName );
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue