From ffb671c61a24a9086343b54bad080e145ff33fc5 Mon Sep 17 00:00:00 2001 From: Dererk Date: Tue, 15 Nov 2016 14:18:46 -0300 Subject: New upstream version 7.8.1 --- bower_components/jquery/src/queue/delay.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'bower_components/jquery/src/queue/delay.js') diff --git a/bower_components/jquery/src/queue/delay.js b/bower_components/jquery/src/queue/delay.js index 4b4498c..8d5844d 100644 --- a/bower_components/jquery/src/queue/delay.js +++ b/bower_components/jquery/src/queue/delay.js @@ -1,22 +1,22 @@ -define([ +define( [ "../core", "../queue", "../effects" // Delay is optional because of this dependency ], function( jQuery ) { // Based off of the plugin by Clint Helfers, with permission. -// http://blindsignals.com/index.php/2009/07/jquery-delay/ +// http://web.archive.org/web/20100324014747/http://blindsignals.com/index.php/2009/07/jquery-delay/ jQuery.fn.delay = function( time, type ) { time = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time; type = type || "fx"; return this.queue( type, function( next, hooks ) { - var timeout = setTimeout( next, time ); + var timeout = window.setTimeout( next, time ); hooks.stop = function() { - clearTimeout( timeout ); + window.clearTimeout( timeout ); }; - }); + } ); }; return jQuery.fn.delay; -}); +} ); -- cgit v1.2.3