Changeset 2283 for FCKeditor/trunk
- Timestamp:
- 2008-07-25 07:47:28 (4 months ago)
- Location:
- FCKeditor/trunk
- Files:
-
- 2 modified
-
editor/_source/internals/fcktablehandler.js (modified) (1 diff)
-
_whatsnew.html (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
FCKeditor/trunk/editor/_source/internals/fcktablehandler.js
r2158 r2283 551 551 var newCellRowIndex = currentRowIndex + 1 ; 552 552 var newRow = FCK.EditorDocument.createElement( 'tr' ) ; 553 currentCell.parentNode.parentNode.insertBefore( newRow, currentCell.parentNode.parentNode.rows[newCellRowIndex] ) ; 553 var tBody = currentCell.parentNode.parentNode ; 554 if ( tBody.rows.length > newCellRowIndex ) 555 tBody.insertBefore( newRow, tBody.rows[newCellRowIndex] ) ; 556 else 557 tBody.appendChild( newRow ) ; 554 558 555 559 // 2. +1 to rowSpan for all cells crossing currentCell's row. -
FCKeditor/trunk/_whatsnew.html
r2281 r2283 110 110 source logic for comments in IE.</li> 111 111 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2387">#2387</a>] Fixed JavaScript 112 with list commands when the editable document is selected with Ctrl-A.</li>112 error with list commands when the editable document is selected with Ctrl-A.</li> 113 113 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2390">#2390</a>] Fixed the issue where 114 114 indent styles in JavaScript-generated <p> blocks are erased in IE.</li> 115 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2394">#2394</a>] Fixed JavaScript 116 error with the "split vertically" command in IE when attempting to split cells in the last 117 row of a table.</li> 115 118 </ul> 116 119 <p>