Ticket #2193: 2193.patch
File 2193.patch, 1.4 KB (added by , 15 years ago) |
---|
-
_whatsnew.html
122 122 Safari 3.1 browser bug which caused the Fit Window button to give a blank screen.</li> 123 123 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2218">#2218</a>] Improved Gecko based browser 124 124 detection to accept Epiphany/Gecko as well.</li> 125 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2193">#2193</a>] Fixed the issue where the caret 126 cannot reach the last character of a paragraph in Opera 9.50.</li> 125 127 </ul> 126 128 <h3> 127 129 Version 2.6</h3> -
editor/_source/internals/fck_gecko.js
104 104 105 105 // only perform the patched behavior if we're in an <a> tag, or the End key is pressed. 106 106 var parentTag = node.parentNode.tagName.toLowerCase() ; 107 if ( ! ( parentTag == 'a' || String(node.parentNode.contentEditable) == 'false'||107 if ( ! ( parentTag == 'a' || ( !FCKBrowserInfo.IsOpera && String(node.parentNode.contentEditable) == 'false' ) || 108 108 ( ! ( FCKListsLib.BlockElements[parentTag] || FCKListsLib.NonEmptyBlockElements[parentTag] ) 109 109 && keyCode == 35 ) ) ) 110 110 return ;