Skip to content

Commit d3ffacb

Browse files
committed
Effects: Fixed typo. Fixes #7435 - animateClass ignores easing due to typo 'easding'.
1 parent ce2fbb9 commit d3ffacb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ui/jquery.effects.core.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ $.effects.animateClass = function(value, duration, easing, callback) {
249249
that.animate(styleDifference(originalStyle, newStyle), {
250250
queue: false,
251251
duration: duration,
252-
easding: easing,
252+
easing: easing,
253253
complete: function() {
254254
$.each(classAnimationActions, function(i, action) {
255255
if (value[action]) { that[action + 'Class'](value[action]); }

0 commit comments

Comments
 (0)