Changes between Initial Version and Version 1 of Ticket #9033, comment 1
- Timestamp:
- Jun 14, 2012, 9:33:11 AM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #9033, comment 1
initial v1 1 1 This bug is in "tabletools/plugin.js", mergeCells function. After removing an empty tailTr, all cells in the previous row should be updated with new rowSpan. 2 2 My fix: 3 3 {{{ 4 4 var newmap = null; 5 5 for ( i = count - 1; i >= 0; i-- ) … … 25 25 } 26 26 } 27 }}} 27 28 28