[ Index ] |
|
Code source de vtiger CRM 5.0.2 |
1 /* 2 * FCKeditor - The text editor for internet 3 * Copyright (C) 2003-2005 Frederico Caldeira Knabben 4 * 5 * Licensed under the terms of the GNU Lesser General Public License: 6 * http://www.opensource.org/licenses/lgpl-license.php 7 * 8 * For further information visit: 9 * http://www.fckeditor.net/ 10 * 11 * "Support Open Source software. What about a donation today?" 12 * 13 * File Name: fckbrowserinfo.js 14 * Defines the FCKBrowserInfo object that hold some browser informations. 15 * 16 * File Authors: 17 * Frederico Caldeira Knabben (fredck@fckeditor.net) 18 */ 19 20 var FCKBrowserInfo ; 21 22 if ( !( FCKBrowserInfo = NS.FCKBrowserInfo ) ) 23 { 24 FCKBrowserInfo = NS.FCKBrowserInfo = new Object() ; 25 26 var sAgent = navigator.userAgent.toLowerCase() ; 27 28 FCKBrowserInfo.IsIE = ( sAgent.indexOf("msie") != -1 ) ; 29 FCKBrowserInfo.IsGecko = !FCKBrowserInfo.IsIE ; 30 FCKBrowserInfo.IsSafari = ( sAgent.indexOf("safari") != -1 ) ; 31 FCKBrowserInfo.IsNetscape = ( sAgent.indexOf("netscape") != -1 ) ; 32 }
titre
Description
Corps
titre
Description
Corps
titre
Description
Corps
titre
Corps
Généré le : Sun Feb 25 10:22:19 2007 | par Balluche grâce à PHPXref 0.7 |