Ticket #309: 309_2.patch
File 309_2.patch, 1.3 KB (added by , 15 years ago) |
---|
-
_whatsnew.html
47 47 several "strict warning" messages in Firefox when running FCKeditor.</li> 48 48 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/1522">#1522</a>] The ENTER 49 49 key will now work properly in IE with the cursor at the start of a formatted block.</li> 50 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/309">#309</a>] The 51 ENTER key will not anymore break <button> elements at the beginning of 52 paragraphs.</li> 50 53 </ul> 51 54 <p> 52 55 <a href="_whatsnew_history.html">See previous versions history</a> -
editor/_source/classes/fckdomrange.js
151 151 { 152 152 var child ; 153 153 154 while ( ( child = targetElement.firstChild ) && child.nodeType == 1 && FCKListsLib. EmptyElements[ child.nodeName.toLowerCase() ] == null)154 while ( ( child = targetElement.firstChild ) && child.nodeType == 1 && FCKListsLib.InlineNonEmptyElements[ child.nodeName.toLowerCase() ] ) 155 155 targetElement = child ; 156 156 157 157 this.MoveToElementStart( targetElement ) ;