aboutsummaryrefslogtreecommitdiffstats
path: root/src/fx.js
diff options
context:
space:
mode:
authorJohn Resig <jeresig@gmail.com>2007-09-09 16:12:56 +0000
committerJohn Resig <jeresig@gmail.com>2007-09-09 16:12:56 +0000
commit7e9d8531544c00b80969b135b19bd2bfad686739 (patch)
tree63457c41adc0bc4a51b3187a055d08caf1bddda8 /src/fx.js
parent3a4e1233aa2acabee0d0267d54c2d1112fbdcad4 (diff)
downloadjquery-7e9d8531544c00b80969b135b19bd2bfad686739.tar.gz
jquery-7e9d8531544c00b80969b135b19bd2bfad686739.zip
.stop() wouldn't resume any queued animations.
Diffstat (limited to 'src/fx.js')
-rw-r--r--src/fx.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fx.js b/src/fx.js
index 9fde6b9dd..c708b1a60 100644
--- a/src/fx.js
+++ b/src/fx.js
@@ -166,7 +166,7 @@ jQuery.fn.extend({
for ( var i = 0; i < timers.length; i++ )
if ( timers[i].elem == this )
timers.splice(i--, 1);
- });
+ }).dequeue();
}
});