aboutsummaryrefslogtreecommitdiffstats
path: root/src/queue/delay.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/queue/delay.js')
-rw-r--r--src/queue/delay.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/queue/delay.js b/src/queue/delay.js
index 93abd0bf2..8d5844d6b 100644
--- a/src/queue/delay.js
+++ b/src/queue/delay.js
@@ -1,4 +1,4 @@
-define([
+define( [
"../core",
"../queue",
"../effects" // Delay is optional because of this dependency
@@ -15,8 +15,8 @@ jQuery.fn.delay = function( time, type ) {
hooks.stop = function() {
window.clearTimeout( timeout );
};
- });
+ } );
};
return jQuery.fn.delay;
-});
+} );