Changeset 1405
- Timestamp:
- 2008-01-24 17:26:32 (2 years ago)
- Location:
- FCKeditor/trunk
- Files:
-
- 2 modified
-
editor/_source/classes/fckeditingarea.js (modified) (1 diff)
-
_whatsnew.html (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
FCKeditor/trunk/editor/_source/classes/fckeditingarea.js
r1192 r1405 46 46 47 47 // Remove all child nodes from the target. 48 var oChild ; 49 while( ( oChild = eTargetElement.firstChild ) ) // Only one "=". 50 { 51 // Set innerHTML = '' to avoid memory leak. 52 if ( oChild.contentWindow ) 53 oChild.contentWindow.document.body.innerHTML = '' ; 54 55 eTargetElement.removeChild( oChild ) ; 56 } 48 while( eTargetElement.firstChild ) 49 eTargetElement.removeChild( eTargetElement.firstChild ) ; 57 50 58 51 if ( this.Mode == FCK_EDITMODE_WYSIWYG ) -
FCKeditor/trunk/_whatsnew.html
r1404 r1405 61 61 ENTER key will not any more break <button> elements at the beginning of 62 62 paragraphs.</li> 63 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/1654">#1654</a>] The editor 64 was not loading on an specific unknown situation. The breaking point has been removed.</li> 63 65 </ul> 64 66 <p>