Changes between Version 1 and Version 2 of Ticket #14845, comment 2
- Timestamp:
- Sep 7, 2016, 7:39:20 AM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #14845, comment 2
v1 v2 4 4 if we replace the following code 5 5 6 6 {{{ 7 7 if ( removePreviousBr ) { 8 8 var previousSibling = block.getPrevious(); … … 23 23 } 24 24 } 25 25 }}} 26 26 27 27 '''with the following''' 28 28 {{{ 29 29 if ( removePreviousBr ) { 30 30 var previousSibling = block.getPrevious(); … … 62 62 } 63 63 } 64 64 }}} 65 65 it will fix the issue. But i am not sure about the other effects of that code change. 66 66