From: jeresig Date: Wed, 10 Feb 2010 20:56:53 +0000 (-0500) Subject: Simplify the special change/submit event removal logic, per Scott's suggestion in... X-Git-Url: http://git.asbjorn.biz/?p=jquery.git;a=commitdiff_plain;h=35c379075c9feaa7cf82b4cf4c50a790e35b4d5f Simplify the special change/submit event removal logic, per Scott's suggestion in 5267824aa36f0fcecb944a4daf0b99d6e01460fd. --- diff --git a/src/event.js b/src/event.js index 6fe8a5b..2e510ea 100644 --- a/src/event.js +++ b/src/event.js @@ -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 ); }