Changeset 384

Show
Ignore:
Timestamp:
2007-06-16 13:17:48 (19 months ago)
Author:
fredck
Message:

Fixed #214 : Implemented fix proposed by Hallvord to fix the enter key issue in Opera.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • FCKeditor/trunk/editor/_source/classes/fckenterkey.js

    r369 r384  
    339339                                eNewBlock = this.Window.document.createElement( blockTag ) ; 
    340340 
    341                         if ( FCKBrowserInfo.IsGeckoLike ) 
     341                        // Opera needs some text (even empty) to correctly position the caret (#214). 
     342                        if ( FCKBrowserInfo.IsOpera ) 
     343                                eNewBlock.appendChild( this.Window.document.createTextNode( '' ) ) ; 
     344                        else if ( FCKBrowserInfo.IsGeckoLike ) 
    342345                                eNewBlock.innerHTML = GECKO_BOGUS ; 
    343346