Ticket #1752: 1752_2.patch
File 1752_2.patch, 1.2 KB (added by , 14 years ago) |
---|
-
_whatsnew_history.html
37 37 <p> 38 38 Fixed Bugs:</p> 39 39 <ul> 40 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/1752">#1752</a>] Fixed 41 the issue with Tablecommands plugin and undefined tagName.</li> 40 42 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2412">#2412</a>] FCK.InsertHtml() 41 43 is now properly removing selected contents after content insertion in Firefox.</li> 42 44 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2420">#2420</a>] Spelling -
editor/_source/internals/fcktablehandler_gecko.js
48 48 else 49 49 oCell = oRange.startContainer.childNodes[ oRange.startOffset ] ; 50 50 51 if ( oCell. tagName.Equals( 'TD', 'TH' ) )51 if ( oCell.nodeType == 1 && oCell.tagName.Equals( 'TD', 'TH' ) ) 52 52 aCells[aCells.length] = oCell ; 53 53 } 54 54