fix a bug (#709)

Resolve the problem after calling the animateCss() method can not continue to call other jQuery methods
This commit is contained in:
木头 2017-07-10 00:57:11 +08:00 committed by Elton Mesquita
parent 01d30f5ab6
commit ba5ca55c80
1 changed files with 1 additions and 0 deletions

View File

@ -165,6 +165,7 @@ $.fn.extend({
this.addClass('animated ' + animationName).one(animationEnd, function() {
$(this).removeClass('animated ' + animationName);
});
return this;
}
});
```