Renaming 'runner' to 'hooks' - makes it a little more obvious whats happening

This commit is contained in:
Corey Frang
2011-10-31 08:33:11 -05:00
committed by Dave Methvin
parent 38f087b5ae
commit 0191e98934
2 changed files with 7 additions and 7 deletions

4
src/effects.js vendored
View File

@@ -270,9 +270,9 @@ jQuery.fn.extend({
}
function stopQueue( elem, data, i ) {
var runner = data[ i ];
var hooks = data[ i ];
jQuery.removeData( elem, i, true );
runner.stop( gotoEnd );
hooks.stop( gotoEnd );
}
if ( type == null ) {