update address standardization for cust_location changes
[freeside.git] / rt / share / html / NoAuth / RichText / FCKeditor / editor / _source / internals / fckbrowserinfo.js
diff --git a/rt/share/html/NoAuth/RichText/FCKeditor/editor/_source/internals/fckbrowserinfo.js b/rt/share/html/NoAuth/RichText/FCKeditor/editor/_source/internals/fckbrowserinfo.js
deleted file mode 100644 (file)
index 5549b5b..0000000
+++ /dev/null
@@ -1,61 +0,0 @@
-/*\r
- * FCKeditor - The text editor for Internet - http://www.fckeditor.net\r
- * Copyright (C) 2003-2009 Frederico Caldeira Knabben\r
- *\r
- * == BEGIN LICENSE ==\r
- *\r
- * Licensed under the terms of any of the following licenses at your\r
- * choice:\r
- *\r
- *  - GNU General Public License Version 2 or later (the "GPL")\r
- *    http://www.gnu.org/licenses/gpl.html\r
- *\r
- *  - GNU Lesser General Public License Version 2.1 or later (the "LGPL")\r
- *    http://www.gnu.org/licenses/lgpl.html\r
- *\r
- *  - Mozilla Public License Version 1.1 or later (the "MPL")\r
- *    http://www.mozilla.org/MPL/MPL-1.1.html\r
- *\r
- * == END LICENSE ==\r
- *\r
- * Contains browser detection information.\r
- */\r
-\r
-var s = navigator.userAgent.toLowerCase() ;\r
-\r
-var FCKBrowserInfo =\r
-{\r
-       IsIE            : /*@cc_on!@*/false,\r
-       IsIE7           : /*@cc_on!@*/false && ( parseInt( s.match( /msie (\d+)/ )[1], 10 ) >= 7 ),\r
-       IsIE6           : /*@cc_on!@*/false && ( parseInt( s.match( /msie (\d+)/ )[1], 10 ) >= 6 ),\r
-       IsSafari        : s.Contains(' applewebkit/'),          // Read "IsWebKit"\r
-       IsOpera         : !!window.opera,\r
-       IsAIR           : s.Contains(' adobeair/'),\r
-       IsMac           : s.Contains('macintosh')\r
-} ;\r
-\r
-// Completes the browser info with further Gecko information.\r
-(function( browserInfo )\r
-{\r
-       browserInfo.IsGecko = ( navigator.product == 'Gecko' ) && !browserInfo.IsSafari && !browserInfo.IsOpera ;\r
-       browserInfo.IsGeckoLike = ( browserInfo.IsGecko || browserInfo.IsSafari || browserInfo.IsOpera ) ;\r
-\r
-       if ( browserInfo.IsGecko )\r
-       {\r
-               var geckoMatch = s.match( /rv:(\d+\.\d+)/ ) ;\r
-               var geckoVersion = geckoMatch && parseFloat( geckoMatch[1] ) ;\r
-\r
-               // Actually "10" refers to Gecko versions before Firefox 1.5, when\r
-               // Gecko 1.8 (build 20051111) has been released.\r
-\r
-               // Some browser (like Mozilla 1.7.13) may have a Gecko build greater\r
-               // than 20051111, so we must also check for the revision number not to\r
-               // be 1.7 (we are assuming that rv < 1.7 will not have build > 20051111).\r
-\r
-               if ( geckoVersion )\r
-               {\r
-                       browserInfo.IsGecko10 = ( geckoVersion < 1.8 ) ;\r
-                       browserInfo.IsGecko19 = ( geckoVersion > 1.8 ) ;\r
-               }\r
-       }\r
-})(FCKBrowserInfo) ;\r