Changeset 2256 for FCKeditor/trunk
- Timestamp:
- 2008-07-22 04:38:14 (4 months ago)
- Location:
- FCKeditor/trunk
- Files:
-
- 3 modified
-
editor/_source/internals/fck_ie.js (modified) (1 diff)
-
editor/_source/internals/fckselection_ie.js (modified) (1 diff)
-
_whatsnew.html (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
FCKeditor/trunk/editor/_source/internals/fck_ie.js
r2073 r2256 136 136 137 137 this.EditorDocument.attachEvent("ondblclick", Doc_OnDblClick ) ; 138 139 this.EditorDocument.attachEvent("onbeforedeactivate", function(){ FCKSelection.Save( true ) ; } ) ; 138 140 139 141 // Catch cursor selection changes. -
FCKeditor/trunk/editor/_source/internals/fckselection_ie.js
r2072 r2256 210 210 } 211 211 212 FCKSelection.Save = function( )212 FCKSelection.Save = function( noFocus ) 213 213 { 214 214 // Ensures the editor has the selection focus. (#1801) 215 FCK.Focus() ; 215 if ( !noFocus ) 216 FCK.Focus() ; 216 217 217 218 var editorDocument = FCK.EditorDocument ; -
FCKeditor/trunk/_whatsnew.html
r2255 r2256 99 99 data loss bug in IE when there are @import statements in the editor's CSS files, 100 100 and IE's cache is set to "Check for newer versions on every visit".</li> 101 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2376">#2376</a>] FCK.InsertHtml() 102 will now insert to the last selected position after the user has selected things outside 103 of FCKeditor, in IE.</li> 101 104 </ul> 102 105 <p>