aboutsummaryrefslogtreecommitdiffstats
path: root/bower_components/jquery/src/queue
diff options
context:
space:
mode:
authorLibravatarDererk <dererk@satellogic.com>2016-11-15 14:18:46 -0300
committerLibravatarDererk <dererk@satellogic.com>2016-11-15 14:18:46 -0300
commitffb671c61a24a9086343b54bad080e145ff33fc5 (patch)
tree2c5291f7a34edf4afdc8e07887a148291bfa3fa1 /bower_components/jquery/src/queue
parent4e3224c012df9f74f010eb92203520515e8537b9 (diff)
New upstream version 7.8.1upstream/7.8.1
Diffstat (limited to 'bower_components/jquery/src/queue')
-rw-r--r--bower_components/jquery/src/queue/delay.js12
1 files changed, 6 insertions, 6 deletions
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;
-});
+} );