Show
Ignore:
Timestamp:
2008-03-10 03:40:04 (7 months ago)
Author:
martinkou
Message:

Fixed #1934 : Fixed JavaScript errors when calling Selection.EnsureSelection() in dialogs.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • FCKeditor/trunk/editor/fckdialog.html

    r1611 r1688  
    387387                { 
    388388                        if ( FCKDialog.SelectionData ) 
    389                                 FCKDialog.SelectionData.select() ; 
     389                        { 
     390                                try 
     391                                { 
     392                                        FCKDialog.SelectionData.select() ; 
     393                                } 
     394                                catch ( e ) {} 
     395                        } 
    390396                }, 
    391397