Skip to main content

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);
Attachments (0)
Change History (2)

Changed December 31, 2008 08:28PM UTC by scottgonzalez comment:1

milestone: TBD1.6

Changed January 07, 2009 04:07PM UTC by paul comment:2

resolution: → fixed
status: newclosed

Fixed in r1539. Thanks!