]> source.dussan.org Git - svg.js.git/commitdiff
.animation() .stop() now fires .after() if present 192/head
authorvird <virdvip@gmail.com>
Wed, 28 May 2014 12:50:21 +0000 (15:50 +0300)
committervird <virdvip@gmail.com>
Wed, 28 May 2014 12:50:21 +0000 (15:50 +0300)
src/fx.js

index 424c9522207cea47479d9cd01f3249d785e8842c..24b992e4a54d796b068a6edbcd05e6152b15f687 100755 (executable)
--- a/src/fx.js
+++ b/src/fx.js
@@ -368,8 +368,10 @@ SVG.FX = SVG.invent({
   , stop: function(fulfill) {
       /* fulfill animation */
       if (fulfill === true) {
-        this.animate(0)
-
+        this.animate(0);
+        if (this._after) {
+          this._after.apply(this);
+        }
       } else {
         /* stop current animation */
         clearTimeout(this.timeout)
@@ -452,4 +454,4 @@ SVG.FX = SVG.invent({
     }
     
   }
-})
\ No newline at end of file
+})