Skip to main content

Bug Tracker

Side navigation

#1021 closed bug (fixed)

Opened March 05, 2007 09:10AM UTC

Closed March 15, 2007 05:18PM UTC

Last modified June 20, 2007 12:55AM UTC

fx/animate loses original overflow setting

Reported by: lm Owned by:
Priority: minor Milestone: 1.1.3
Component: effects Version: 1.1.2
Keywords: fx animate overflow Cc:
Blocked by: Blocking:
Description

Within fx() (which is used by animate()), the css 'overflow' property loses it's original setting resulting in a "pop" back to a non-clipped state when one is trying to shrink the height of a div while using an overflow of hidden.

easy to fix:

change line 4954-5 to include a save of the original state:

y.origOverflow = y.overflow;    // NEW LINE
y.overflow = "hidden";

then revert to changed state by changing line 5067 from:

y.overflow = "";    // OLD LINE

to:

y.overflow = y.origOverflow;    // MODIFIED LINE
Attachments (0)
Change History (1)

Changed March 15, 2007 05:18PM UTC by john comment:1

milestone: → 1.1.3
resolution: → fixed
status: newclosed

This should be fixed in SVN rev [1531].