diff options
author | Ulrich-Matthias Schäfer <ulima.ums@googlemail.com> | 2016-04-09 18:30:27 +0200 |
---|---|---|
committer | Ulrich-Matthias Schäfer <ulima.ums@googlemail.com> | 2016-04-09 18:30:27 +0200 |
commit | 2d785535daf4fccb01c1b505aa3d71b2af4035e4 (patch) | |
tree | db7f17090dc5f483b97ca708b92ecd969a98506a /dist/svg.js | |
parent | 700a77060fe2b347e256abdb423c75a05613a690 (diff) | |
download | svg.js-2d785535daf4fccb01c1b505aa3d71b2af4035e4.tar.gz svg.js-2d785535daf4fccb01c1b505aa3d71b2af4035e4.zip |
fixed bug where `stop(true)` throws an error when element is not animated (#475)
Diffstat (limited to 'dist/svg.js')
-rw-r--r-- | dist/svg.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dist/svg.js b/dist/svg.js index 2a7a770..a536450 100644 --- a/dist/svg.js +++ b/dist/svg.js @@ -6,7 +6,7 @@ * @copyright Wout Fierens <wout@woutfierens.com> * @license MIT * -* BUILT: Sat Apr 09 2016 18:05:18 GMT+0200 (Mitteleuropäische Sommerzeit) +* BUILT: Sat Apr 09 2016 18:26:54 GMT+0200 (Mitteleuropäische Sommerzeit) */; (function(root, factory) { if (typeof define === 'function' && define.amd) { @@ -1591,7 +1591,7 @@ SVG.FX = SVG.invent({ this.active = false - if(jumpToEnd){ + if(jumpToEnd && this.situation){ this.situation.loop = false |