From ba5ca55c80274b8f187c8a1fc17fb71e2480f608 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9C=A8=E5=A4=B4?= Date: Mon, 10 Jul 2017 00:57:11 +0800 Subject: [PATCH] fix a bug (#709) Resolve the problem after calling the animateCss() method can not continue to call other jQuery methods --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 36e87f3..ed51d90 100644 --- a/README.md +++ b/README.md @@ -165,6 +165,7 @@ $.fn.extend({ this.addClass('animated ' + animationName).one(animationEnd, function() { $(this).removeClass('animated ' + animationName); }); + return this; } }); ```