Changeset 482

Show
Ignore:
Timestamp:
2007-07-20 09:53:27 (17 months ago)
Author:
martinkou
Message:

Fixed #141 : Under some circumstances, reloading the page in IE would incorrectly set the visual focus to the editor.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • FCKeditor/trunk/editor/_source/internals/fck.js

    r474 r482  
    126126                        if ( FCKConfig.StartupFocus ) 
    127127                                FCK.Focus() ; 
     128                        else if ( FCKBrowserInfo.IsIE ) 
     129                        { 
     130                                // Logic to circumvent IE bug on startup focus (See ticket #141) 
     131                                window.blur() ; 
     132                        } 
    128133                } 
    129134