Changes between Initial Version and Version 1 of Ticket #8710, comment 19
- Timestamp:
- May 28, 2014, 2:59:56 PM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #8710, comment 19
initial v1 2 2 3 3 The current line below: 4 5 {{{ 4 6 if ( ( position.top + myOffset + atOffset + offset) > overBottom && ( newOverTop > 0 || abs( newOverTop ) < overBottom ) ) { 7 }}} 8 5 9 6 10 can be corrected to this: 11 12 {{{ 7 13 if ( ( position.top + myOffset + atOffset + offset) < overBottom && ( newOverTop > 0 || abs( newOverTop ) < overBottom ) ) { 14 }}}