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 ) {

View File

@ -71,7 +71,7 @@ jQuery.extend({
var queue = jQuery.queue( elem, type ),
fn = queue.shift(),
runner = {};
hooks = {};
// If the fx queue is dequeued, always remove the progress sentinel
if ( fn === "inprogress" ) {
@ -85,10 +85,10 @@ jQuery.extend({
queue.unshift( "inprogress" );
}
jQuery._data( elem, type + ".run", runner );
jQuery._data( elem, type + ".run", hooks );
fn.call( elem, function() {
jQuery.dequeue( elem, type );
}, runner );
}, hooks );
}
if ( !queue.length ) {
@ -127,9 +127,9 @@ jQuery.fn.extend({
time = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time;
type = type || "fx";
return this.queue( type, function( next, runner ) {
return this.queue( type, function( next, hooks ) {
var timeout = setTimeout( next, time );
runner.stop = function() {
hooks.stop = function() {
clearTimeout( timeout );
};
});