aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorScott González <scott.gonzalez@gmail.com>2011-05-12 21:03:42 -0400
committerScott González <scott.gonzalez@gmail.com>2011-05-12 21:03:42 -0400
commit75500182608b1127a597a426df2d10e51b5c275d (patch)
treeeed165eb5fce15682d0ed43dc0ee5e656b99985c
parentea403891b95945e7bc9ffdefe551da94345c0ba3 (diff)
downloadjquery-ui-75500182608b1127a597a426df2d10e51b5c275d.tar.gz
jquery-ui-75500182608b1127a597a426df2d10e51b5c275d.zip
Class animation: Fixed handling of duration.
-rw-r--r--ui/jquery.effects.core.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/jquery.effects.core.js b/ui/jquery.effects.core.js
index 2320b06c3..638119579 100644
--- a/ui/jquery.effects.core.js
+++ b/ui/jquery.effects.core.js
@@ -261,7 +261,7 @@ $.effects.animateClass = function( value, duration, easing, callback ) {
dfd = $.Deferred();
this.el.animate( this.diff, {
- duration: duration,
+ duration: o.duration,
easing: o.easing,
queue: false,
complete: function() {