diff options
author | wout <wout@impinc.co.uk> | 2014-02-05 10:23:34 +0100 |
---|---|---|
committer | wout <wout@impinc.co.uk> | 2014-02-05 10:23:34 +0100 |
commit | c51d352babb75ef56fc71d93056a797d7f1d70c5 (patch) | |
tree | d7eadf1f246001f4a9933dfa3db60f465935a806 /src/fx.js | |
parent | 6d7675031f2428614e32420fb46ee60223d0a1b2 (diff) | |
download | svg.js-c51d352babb75ef56fc71d93056a797d7f1d70c5.tar.gz svg.js-c51d352babb75ef56fc71d93056a797d7f1d70c5.zip |
Fix in animate('=').to()
Diffstat (limited to 'src/fx.js')
-rwxr-xr-x | src/fx.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -18,7 +18,7 @@ SVG.extend(SVG.FX, { } /* ensure default duration and easing */ - d = d == null ? 1000 : new SVG.Number(d).valueOf() + d = d == '=' ? d : d == null ? 1000 : new SVG.Number(d).valueOf() ease = ease || '<>' /* process values */ |