diff options
author | wout <wout@impinc.co.uk> | 2013-01-08 10:56:00 +0100 |
---|---|---|
committer | wout <wout@impinc.co.uk> | 2013-01-08 10:56:00 +0100 |
commit | c4dc580359b80182a9501d10e84f296336753823 (patch) | |
tree | de6b5750018c2248f41ff625af96efa49b502f21 /dist/svg.js | |
parent | 3bbd30e69a9fdfc9c77f819028d971efe90f9a34 (diff) | |
download | svg.js-c4dc580359b80182a9501d10e84f296336753823.tar.gz svg.js-c4dc580359b80182a9501d10e84f296336753823.zip |
Fix in fx module for very short durations
Diffstat (limited to 'dist/svg.js')
-rw-r--r-- | dist/svg.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/dist/svg.js b/dist/svg.js index 05cbad8..d956f06 100644 --- a/dist/svg.js +++ b/dist/svg.js @@ -1,4 +1,4 @@ -/* svg.js v0.1-71-g87cef2a - svg container element fx event group arrange defs mask pattern gradient doc shape wrap rect ellipse poly path image text nested sugar - svgjs.com/license */ +/* svg.js v0.1-72-g3bbd30e - svg container element fx event group arrange defs mask pattern gradient doc shape wrap rect ellipse poly path image text nested sugar - svgjs.com/license */ (function() { this.svg = function(element) { @@ -413,7 +413,7 @@ // Add animation parameters and start animation animate: function(duration, ease) { /* ensure default duration and easing */ - duration = duration == null ? 1000 : duration < 10 ? 10 : duration; + duration = duration == null ? 1000 : duration; ease = ease || '<>'; var akeys, tkeys, tvalues, @@ -485,7 +485,7 @@ fx._after ? fx._after.apply(element, [fx]) : fx.stop(); } - }, 10); + }, duration > 10 ? 10 : duration); return this; }, |