Changeset 730
- Timestamp:
- 2007-08-27 18:38:45 (15 months ago)
- Location:
- FCKeditor/trunk/editor/_source
- Files:
-
- 2 modified
-
fckeditorapi.js (modified) (1 diff)
-
internals/fckbrowserinfo.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
FCKeditor/trunk/editor/_source/fckeditorapi.js
r694 r730 112 112 eval.call( oParentWindow, sScript ) ; 113 113 } 114 else if ( FCKBrowserInfo.IsSafari || FCKBrowserInfo.IsGecko )114 else if ( FCKBrowserInfo.IsSafari || FCKBrowserInfo.IsGecko19 ) 115 115 { 116 116 // oParentWindow.eval in Safari and Gran Paradiso executes in the calling window -
FCKeditor/trunk/editor/_source/internals/fckbrowserinfo.js
r307 r730 53 53 // still to check that all Gecko based browser present the rv number. 54 54 browserInfo.IsGecko10 = ( ( geckoVersion < 20051111 ) || ( /rv:1\.7/.test(s) ) ) ; 55 browserInfo.IsGecko19 = /rv:1\.9/.test(s) ; 55 56 } 56 57 else