diff options
author | thomascube <thomas@roundcube.net> | 2005-10-21 12:12:23 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2005-10-21 12:12:23 +0000 |
commit | a95e0e174c48b7c5242b8969aef99838a52c41ee (patch) | |
tree | eb87cb9c33433269d2f2376e841e1d6d66eff667 /program/js/common.js | |
parent | 7902df457d3401c83f78a6ddd48df1a7f07f68b1 (diff) |
Improved support for UTF-8 and other charsets
Diffstat (limited to 'program/js/common.js')
-rw-r--r-- | program/js/common.js | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/program/js/common.js b/program/js/common.js index 2d2c2e925..78fecf8fe 100644 --- a/program/js/common.js +++ b/program/js/common.js @@ -6,7 +6,7 @@ | Copyright (C) 2005, RoundCube Dev, - Switzerland | | Licensed under the GNU GPL | | | - | Modified: 19.08.2005 (tbr) | + | Modified:2005/10/21 (roundcube) | | | +-----------------------------------------------------------------------+ | Author: Thomas Bruederli <roundcube@gmail.com> | @@ -81,6 +81,14 @@ function roundcube_browser() (this.ie && this.win && this.vendver>=5.5) || this.safari); this.opacity = (this.mz || (this.ie && this.vendver>=5.5 && !this.opera) || (this.safari && this.vendver>=100)); this.cookies = navigator.cookieEnabled; + + // test for XMLHTTP support + this.xmlhttp_test = function() + { + var activeX_test = new Function("try{var o=new ActiveXObject('Microsoft.XMLHTTP');return true;}catch(err){return false;}"); + this.xmlhttp = (window.XMLHttpRequest || (window.ActiveXObject && activeX_test())) ? true : false; + return this.xmlhttp; + } } |