Skip to content

Commit

Permalink
jquery fx: closes #2542. show/hide(0, fn) wasn't calling the callback.
Browse files Browse the repository at this point in the history
  • Loading branch information
flesler committed Sep 15, 2009
1 parent 5e0da8c commit 321267d
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/fx.js
Expand Up @@ -19,7 +19,7 @@ function genFx( type, num ){

jQuery.fn.extend({
show: function(speed,callback){
if ( speed ) {
if ( speed !== undefined ) {
return this.animate( genFx("show", 3), speed, callback);
} else {
for ( var i = 0, l = this.length; i < l; i++ ){
Expand Down Expand Up @@ -59,7 +59,7 @@ jQuery.fn.extend({
},

hide: function(speed,callback){
if ( speed ) {
if ( speed !== undefined ) {
return this.animate( genFx("hide", 3), speed, callback);
} else {
for ( var i = 0, l = this.length; i < l; i++ ){
Expand Down
12 changes: 10 additions & 2 deletions test/unit/fx.js
Expand Up @@ -68,7 +68,7 @@ test("animate option (queue === false)", function () {
*/

test("animate duration 0", function() {
expect(5);
expect(7);

stop();

Expand Down Expand Up @@ -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(){
Expand Down

0 comments on commit 321267d

Please sign in to comment.