mirror of
https://github.com/jquery/jquery.git
synced 2026-02-12 15:25:36 -05:00
Making sure that you can bind multiple toggles to a single element without problems. Thanks to 'Mr Speaker' for the original patch. Fixes #5274.
This commit is contained in:
@@ -693,13 +693,14 @@ jQuery.fn.extend({
|
||||
|
||||
return this.click( jQuery.event.proxy( fn, function( event ) {
|
||||
// Figure out which function to execute
|
||||
this.lastToggle = ( this.lastToggle || 0 ) % i;
|
||||
var lastToggle = ( jQuery.data( this, 'lastToggle' + fn.guid ) || 0 ) % i;
|
||||
jQuery.data( this, 'lastToggle' + fn.guid, lastToggle + 1 );
|
||||
|
||||
// Make sure that clicks stop
|
||||
event.preventDefault();
|
||||
|
||||
// and execute the function
|
||||
return args[ this.lastToggle++ ].apply( this, arguments ) || false;
|
||||
return args[ lastToggle ].apply( this, arguments ) || false;
|
||||
}));
|
||||
},
|
||||
|
||||
|
||||
Reference in New Issue
Block a user