jquery fx: closes #2542. show/hide(0, fn) wasn't calling the callback.
This commit is contained in:
parent
5e0da8c036
commit
321267dcec
2 changed files with 12 additions and 4 deletions
|
@ -68,7 +68,7 @@ test("animate option (queue === false)", function () {
|
|||
*/
|
||||
|
||||
test("animate duration 0", function() {
|
||||
expect(5);
|
||||
expect(7);
|
||||
|
||||
stop();
|
||||
|
||||
|
@ -97,7 +97,15 @@ test("animate duration 0", function() {
|
|||
// Failed until [6115]
|
||||
equals( counter, 5, "One synchronic and one asynchronic" );
|
||||
start();
|
||||
});
|
||||
});
|
||||
|
||||
var $elem = jQuery("<div />");
|
||||
$elem.show(0, function(){
|
||||
ok(true, "Show's callback with no duration");
|
||||
});
|
||||
$elem.hide(0, function(){
|
||||
ok(true, "Show's callback with no duration");
|
||||
});
|
||||
});
|
||||
|
||||
test("animate hyphenated properties", function(){
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue