Changes between Initial Version and Version 1 of Ticket #5487
- Timestamp:
- Nov 11, 2009, 7:51:52 AM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #5487 – Description
initial v1 6 6 7 7 My line 4023: 8 8 {{{ 9 9 if ( ( this.prop == "height" || this.prop == "width" ) && this.elem.style && this.elem.style.display != "table-row" ) 10 10 }}} 11 11 Yours: 12 12 {{{ 13 13 if ( ( this.prop == "height" || this.prop == "width" ) && this.elem.style ) 14 14 }}} 15 15 16 16 Could be others cases like this, where jquery should not change the display mode. In my way, I verify the value of display style, but it's could be a parameter, pass in animate function, for example.