Changeset 205
- Timestamp:
- 2007-03-13 14:55:11 (22 months ago)
- Location:
- FCKeditor/trunk/editor/_source
- Files:
-
- 2 modified
-
classes/fckeditingarea.js (modified) (1 diff)
-
internals/fck.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
FCKeditor/trunk/editor/_source/classes/fckeditingarea.js
r172 r205 216 216 if ( this.Mode == FCK_EDITMODE_WYSIWYG ) 217 217 { 218 // The following check is important to avoid IE entering in a focus loop. Ref: 219 // http://sourceforge.net/tracker/index.php?func=detail&aid=1567060&group_id=75348&atid=543653 218 220 if ( FCKBrowserInfo.IsIE && this.Document.hasFocus() ) 219 221 return ; -
FCKeditor/trunk/editor/_source/internals/fck.js
r201 r205 647 647 if ( FCK._ForceResetIsDirty ) 648 648 FCK.ResetIsDirty() ; 649 650 // This is a tricky thing for IE. In some cases, even if the cursor is 651 // blinking in the editing, the keystroke handler doesn't catch keyboard 652 // events. We must activate the editing area to make it work. (#142). 653 if ( FCKBrowserInfo.IsIE && FCK.HasFocus ) 654 FCK.EditorDocument.body.setActive() ; 649 655 650 656 FCK.OnAfterSetHTML() ;