aboutsummaryrefslogtreecommitdiffstats
path: root/ui/jquery.effects.core.js
diff options
context:
space:
mode:
authorScott González <scott.gonzalez@gmail.com>2011-05-28 11:48:11 -0400
committerScott González <scott.gonzalez@gmail.com>2011-05-28 11:48:11 -0400
commitd3ffacb75674a0c86d930299c69946646d3d6ba0 (patch)
tree1404c5b78ff041257414019dad65f4789be81f86 /ui/jquery.effects.core.js
parentce2fbb9429dd5fcaf80b1f3eef3d922b7ca06ec8 (diff)
downloadjquery-ui-d3ffacb75674a0c86d930299c69946646d3d6ba0.tar.gz
jquery-ui-d3ffacb75674a0c86d930299c69946646d3d6ba0.zip
Effects: Fixed typo. Fixes #7435 - animateClass ignores easing due to typo 'easding'.
Diffstat (limited to 'ui/jquery.effects.core.js')
-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 d9ff4b09b..46627158e 100644
--- a/ui/jquery.effects.core.js
+++ b/ui/jquery.effects.core.js
@@ -249,7 +249,7 @@ $.effects.animateClass = function(value, duration, easing, callback) {
that.animate(styleDifference(originalStyle, newStyle), {
queue: false,
duration: duration,
- easding: easing,
+ easing: easing,
complete: function() {
$.each(classAnimationActions, function(i, action) {
if (value[action]) { that[action + 'Class'](value[action]); }