Changeset 671

Show
Ignore:
Timestamp:
2007-08-17 05:14:06 (17 months ago)
Author:
martinkou
Message:

Fixed #1075 : Fixed JavaScript error when FCKeditor is loaded in a hidden div.

Files:
1 modified

Legend:

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

    r666 r671  
    204204                FCK._FillEmptyBlock( FCK.EditorDocument.body.firstChild ) ; 
    205205                var sel = FCK.EditorWindow.getSelection() ; 
    206                 if ( sel.rangeCount < 1 ) 
     206                if ( !sel || sel.rangeCount < 1 ) 
    207207                        return ; 
    208208                var range = sel.getRangeAt( 0 );