Changeset 1403
- Timestamp:
- 2008-01-24 17:13:57 (7 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
FCKeditor/trunk/editor/_source/internals/fckbrowserinfo.js
r1398 r1403 27 27 { 28 28 IsIE : /*@cc_on!@*/false, 29 IsIE7 : /*@cc_on!@*/false && ( parse Float( s.match( /msie ([\d|\.]+)/ )[1] ) >= 7 ),30 IsIE6 : /*@cc_on!@*/false && ( parse Float( s.match( /msie ([\d|\.]+)/ )[1] ) >= 6 ),29 IsIE7 : /*@cc_on!@*/false && ( parseInt( s.match( /msie (\d+)/ )[1] ) >= 7 ), 30 IsIE6 : /*@cc_on!@*/false && ( parseInt( s.match( /msie (\d+)/ )[1] ) >= 6 ), 31 31 IsGecko : s.Contains('gecko/'), 32 32 IsSafari : s.Contains(' applewebkit/'), // Read "IsWebKit"