Search and Top Navigation
#3674 closed bug (fixed)
Opened December 18, 2008 02:09AM UTC
Closed January 07, 2009 04:07PM UTC
Easing doesn't work on class animations (single-line fix)
Reported by: | dtetto | Owned by: | |
---|---|---|---|
Priority: | major | Milestone: | 1.7 |
Component: | ui.effects.core | Version: | 1.6rc2 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
Easing is always null on any animateClass() calls due to line 81 of effects.core:
var ea = (typeof easing == "object" ? easing : null);
When specified, easing is a string, not an object. The following should fix:
var ea = (typeof easing == "string" ? easing : null);