Changeset 423
- Timestamp:
- 07/09/07 00:08:44 (6 years ago)
- Location:
- FCKeditor/trunk
- Files:
-
- 3 edited
-
_whatsnew.html (modified) (1 diff)
-
editor/_source/classes/fckeditingarea.js (modified) (2 diffs)
-
fckconfig.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
FCKeditor/trunk/_whatsnew.html
r420 r423 102 102 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/946">#946</a>] Toolbar images didn't show in non-IE 103 103 browsers if the path contained a space.</li> 104 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/291">#291</a>] 105 [<a target="_blank" href="http://dev.fckeditor.net/ticket/395">#395</a>] 106 [<a target="_blank" href="http://dev.fckeditor.net/ticket/932">#932</a>] Clicking outside the editor it was possible 107 to paste or apply formating to the rest of the page in IE.</li> 104 108 </ul> 105 109 <h3> -
FCKeditor/trunk/editor/_source/classes/fckeditingarea.js
r385 r423 224 224 // http://sourceforge.net/tracker/index.php?func=detail&aid=1567060&group_id=75348&atid=543653 225 225 if ( FCKBrowserInfo.IsIE && this.Document.hasFocus() ) 226 { 227 // In IE it can happen that the document is in theory focused but the active element is outside it 228 this.Document.body.setActive() ; 226 229 return ; 230 } 227 231 228 232 if ( FCKBrowserInfo.IsSafari ) … … 231 235 { 232 236 this.Window.focus() ; 237 238 // In IE it can happen that the document is in theory focused but the active element is outside it 239 if ( FCKBrowserInfo.IsIE ) 240 this.Document.body.setActive() ; 233 241 } 234 242 } -
FCKeditor/trunk/fckconfig.js
r418 r423 75 75 FCKConfig.ForceStrongEm = true ; 76 76 FCKConfig.GeckoUseSPAN = false ; 77 FCKConfig.StartupFocus = false ;77 FCKConfig.StartupFocus = true ; 78 78 FCKConfig.ForcePasteAsPlainText = false ; 79 79 FCKConfig.AutoDetectPasteFromWord = true ; // IE only.
Note: See TracChangeset
for help on using the changeset viewer.
