diff options
author | Ulrich-Matthias Schäfer <ulima.ums@googlemail.com> | 2017-03-09 09:47:23 +0100 |
---|---|---|
committer | Ulrich-Matthias Schäfer <ulima.ums@googlemail.com> | 2017-03-09 09:47:23 +0100 |
commit | 4f4f098c8026d1a42356555088eaa0b67ceabfa8 (patch) | |
tree | 47e40516ff60a699b42badd6c03c5903156ffe5e /src/transform.js | |
parent | 8a0a4d797f8954a3b1964c6e407d9291d4afc7ab (diff) | |
download | svg.js-4f4f098c8026d1a42356555088eaa0b67ceabfa8.tar.gz svg.js-4f4f098c8026d1a42356555088eaa0b67ceabfa8.zip |
start the animation when after(All)/during(All) is called (#583)
Diffstat (limited to 'src/transform.js')
-rw-r--r-- | src/transform.js | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/transform.js b/src/transform.js index d1db74a..170c205 100644 --- a/src/transform.js +++ b/src/transform.js @@ -166,9 +166,7 @@ SVG.extend(SVG.FX, { this.last().transforms.push(matrix) - setTimeout(function(){this.start()}.bind(this), 0) - - return this + return this._callStart() } }) |