Changeset 384
- Timestamp:
- 2007-06-16 13:17:48 (19 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
FCKeditor/trunk/editor/_source/classes/fckenterkey.js
r369 r384 339 339 eNewBlock = this.Window.document.createElement( blockTag ) ; 340 340 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 ) 342 345 eNewBlock.innerHTML = GECKO_BOGUS ; 343 346