Changeset 730

Show
Ignore:
Timestamp:
2007-08-27 18:38:45 (15 months ago)
Author:
martinkou
Message:

Fixed the issue where FCKeditor does not work under Firefox 1.5.

Location:
FCKeditor/trunk/editor/_source
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • FCKeditor/trunk/editor/_source/fckeditorapi.js

    r694 r730  
    112112                                eval.call( oParentWindow, sScript ) ; 
    113113                        } 
    114                         else if ( FCKBrowserInfo.IsSafari || FCKBrowserInfo.IsGecko ) 
     114                        else if ( FCKBrowserInfo.IsSafari || FCKBrowserInfo.IsGecko19 ) 
    115115                        { 
    116116                                // oParentWindow.eval in Safari and Gran Paradiso executes in the calling window 
  • FCKeditor/trunk/editor/_source/internals/fckbrowserinfo.js

    r307 r730  
    5353                // still to check that all Gecko based browser present the rv number. 
    5454                browserInfo.IsGecko10 = ( ( geckoVersion < 20051111 ) || ( /rv:1\.7/.test(s) ) ) ; 
     55                browserInfo.IsGecko19 = /rv:1\.9/.test(s) ; 
    5556        } 
    5657        else