diff options
author | John Resig <jeresig@gmail.com> | 2007-09-09 16:12:56 +0000 |
---|---|---|
committer | John Resig <jeresig@gmail.com> | 2007-09-09 16:12:56 +0000 |
commit | 7e9d8531544c00b80969b135b19bd2bfad686739 (patch) | |
tree | 63457c41adc0bc4a51b3187a055d08caf1bddda8 /src/fx.js | |
parent | 3a4e1233aa2acabee0d0267d54c2d1112fbdcad4 (diff) | |
download | jquery-7e9d8531544c00b80969b135b19bd2bfad686739.tar.gz jquery-7e9d8531544c00b80969b135b19bd2bfad686739.zip |
.stop() wouldn't resume any queued animations.
Diffstat (limited to 'src/fx.js')
-rw-r--r-- | src/fx.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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(); } }); |