diff options
author | Oleg <markelog@gmail.com> | 2013-09-11 05:08:01 +0400 |
---|---|---|
committer | Oleg <markelog@gmail.com> | 2013-09-13 01:04:29 +0400 |
commit | cb37994d76afb45efc3b606546349ed4e695c053 (patch) | |
tree | 8deabef18039a4f90b7f8035775dcd4bd3474495 /src/callbacks.js | |
parent | e12746d756ef32124b163136fe49e753b35c7111 (diff) | |
download | jquery-cb37994d76afb45efc3b606546349ed4e695c053.tar.gz jquery-cb37994d76afb45efc3b606546349ed4e695c053.zip |
No ticket: fix code style inconsistencies. Closes gh-1361
Diffstat (limited to 'src/callbacks.js')
-rw-r--r-- | src/callbacks.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/callbacks.js b/src/callbacks.js index ed725b498..17572bb9c 100644 --- a/src/callbacks.js +++ b/src/callbacks.js @@ -126,7 +126,7 @@ jQuery.Callbacks = function( options ) { if ( list ) { jQuery.each( arguments, function( _, arg ) { var index; - while( ( index = jQuery.inArray( arg, list, index ) ) > -1 ) { + while ( ( index = jQuery.inArray( arg, list, index ) ) > -1 ) { list.splice( index, 1 ); // Handle firing indexes if ( firing ) { |