Opened 14 years ago
Closed 14 years ago
#3674 closed bug (fixed)
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);
Change History (2)
comment:1 Changed 14 years ago by
Milestone: | TBD → 1.6 |
---|
comment:2 Changed 14 years ago by
Resolution: | → fixed |
---|---|
Status: | new → closed |
Note: See
TracTickets for help on using
tickets.
Fixed in r1539. Thanks!