#1626 closed defect (fixed)
dojo.lfx.wipeIn()/wipeOut() don't work on fixed size items
Reported by: | bill | Owned by: | bill |
---|---|---|---|
Priority: | high | Milestone: | |
Component: | lfx | Version: | 0.3 |
Keywords: | Cc: | ||
Blocked By: | Blocking: |
Description (last modified by )
If an item explicitly sets it's height, then when you wipe-out and wipe-in the item, that height setting is lost. See tests/lfx/test_wipes2.html for a testcase.
Let me say very precisely what the behavior should be (from my point of view). Given a div like:
<div style="height: 300px;">
If you call wipeOut() on that div, the CSS should end up like this (after the wipeout effect completes):
<div style="height: 300px; display:none;">
Calling wipeIn() should of course restore the CSS to it's original value:
<div style="height: 300px;">
Change History (4)
comment:1 Changed 14 years ago by
Description: | modified (diff) |
---|---|
Owner: | changed from Bryan Forbes to alex |
comment:2 Changed 14 years ago by
Milestone: | → 0.4 |
---|---|
Owner: | changed from alex to bill |
Status: | new → assigned |
comment:3 Changed 14 years ago by
Resolution: | → fixed |
---|---|
Status: | assigned → closed |
Note: See
TracTickets for help on using
tickets.
Reassigning to Alex since his refactor of wipeIn/wipeOut caused this bug.