diff options
author | Scott González <scott.gonzalez@gmail.com> | 2011-05-12 21:03:42 -0400 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2011-05-12 21:03:42 -0400 |
commit | 75500182608b1127a597a426df2d10e51b5c275d (patch) | |
tree | eed165eb5fce15682d0ed43dc0ee5e656b99985c | |
parent | ea403891b95945e7bc9ffdefe551da94345c0ba3 (diff) | |
download | jquery-ui-75500182608b1127a597a426df2d10e51b5c275d.tar.gz jquery-ui-75500182608b1127a597a426df2d10e51b5c275d.zip |
Class animation: Fixed handling of duration.
-rw-r--r-- | ui/jquery.effects.core.js | 2 |
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() { |