Changeset 2054
- Timestamp:
- 2008-06-12 11:05:15 (7 months ago)
- Location:
- FCKeditor/trunk
- Files:
-
- 2 modified
-
editor/_source/internals/fck_gecko.js (modified) (1 diff)
-
_whatsnew.html (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
FCKeditor/trunk/editor/_source/internals/fck_gecko.js
r1997 r2054 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 ) ) ) -
FCKeditor/trunk/_whatsnew.html
r2053 r2054 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>