summaryrefslogtreecommitdiffstats
path: root/src/fx.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/fx.js')
-rw-r--r--src/fx.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fx.js b/src/fx.js
index 845468c..6e6fc00 100644
--- a/src/fx.js
+++ b/src/fx.js
@@ -8,7 +8,7 @@ SVG.extend(SVG.FX, {
// 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,
@@ -80,7 +80,7 @@ SVG.extend(SVG.FX, {
fx._after ? fx._after.apply(element, [fx]) : fx.stop();
}
- }, 10);
+ }, duration > 10 ? 10 : duration);
return this;
},