Changes between Initial Version and Version 1 of Ticket #1626
- Timestamp:
- Oct 11, 2006, 7:44:03 AM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #1626
- Property Owner changed from Bryan Forbes to alex
-
Ticket #1626 – Description
initial v1 1 1 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. 2 3 Let me say very precisely what the behavior should be (from my point of view). Given a div like: 4 5 {{{ 6 <div style="height: 300px;"> 7 }}} 8 9 If you call wipeOut() on that div, the CSS should end up like this (after the wipeout effect completes): 10 11 {{{ 12 <div style="height: 300px; display:none;"> 13 }}} 14 15 Calling wipeIn() should of course restore the CSS to it's original value: 16 17 {{{ 18 <div style="height: 300px;"> 19 }}}