diff options
author | timmywil <timmywillisn@gmail.com> | 2011-10-11 22:37:52 -0400 |
---|---|---|
committer | timmywil <timmywillisn@gmail.com> | 2011-10-11 22:37:52 -0400 |
commit | a18645c6f8f5d8d84c4d47c7137683ac7b4098cc (patch) | |
tree | 8cfd75b1fa37be9e1ce255da6d29bcc590ffb60e /test/unit/queue.js | |
parent | 6c4ca13d693663cdd124d4d29cb12897a6debc5e (diff) | |
download | jquery-a18645c6f8f5d8d84c4d47c7137683ac7b4098cc.tar.gz jquery-a18645c6f8f5d8d84c4d47c7137683ac7b4098cc.zip |
Leave the opacity test unanchored in case of floating point rounding browser errors; small fix in queue tests. Fixes #5145.
Diffstat (limited to 'test/unit/queue.js')
-rw-r--r-- | test/unit/queue.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/unit/queue.js b/test/unit/queue.js index 95bbfc97e..6679bc6c2 100644 --- a/test/unit/queue.js +++ b/test/unit/queue.js @@ -149,8 +149,8 @@ test("delay() can be stopped", function() { }) .dequeue( "alternate" ) - // stop( false ) will NOT clear the queue, so it should automatically dequeue the next - .stop( false, false, "alternate" ) + // stop( "alternate", false ) will NOT clear the queue, so it should automatically dequeue the next + .stop( "alternate", false, false ) // this test .delay( 100 ) |