summaryrefslogtreecommitdiffstats
path: root/js/vendor/jquery/src/queue/delay.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/vendor/jquery/src/queue/delay.js')
-rw-r--r--js/vendor/jquery/src/queue/delay.js12
1 files changed, 6 insertions, 6 deletions
diff --git a/js/vendor/jquery/src/queue/delay.js b/js/vendor/jquery/src/queue/delay.js
index 4b4498cea..8d5844d6b 100644
--- a/js/vendor/jquery/src/queue/delay.js
+++ b/js/vendor/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;
-});
+} );