diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2011-05-03 16:33:19 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2011-05-03 16:33:19 +0000 |
| commit | 640231d81031f2f1587e4b127e47cf4bb5bf6448 (patch) | |
| tree | a31f3f24296d5a06ff10666de16fb6dff0e80219 /roundcubemail | |
| parent | d222a5452245c1b5c81a045ccfd9b055f40d4d5b (diff) | |
- Fix mozilla browser detection
git-svn-id: https://svn.roundcube.net/trunk@4725 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail')
| -rw-r--r-- | roundcubemail/program/js/common.js | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/roundcubemail/program/js/common.js b/roundcubemail/program/js/common.js index 00c4b001b..79832bed5 100644 --- a/roundcubemail/program/js/common.js +++ b/roundcubemail/program/js/common.js @@ -55,16 +55,13 @@ function roundcube_browser() this.ie7 = (this.dom && this.appver.indexOf('MSIE 7')>0); this.ie6 = (this.dom && !this.ie8 && !this.ie7 && this.appver.indexOf('MSIE 6')>0); - this.mz = (this.dom && this.ver >= 5); // (this.dom && this.product=='Gecko') this.ns = ((this.ver < 5 && this.name == 'Netscape') || (this.ver >= 5 && this.vendor.indexOf('Netscape') >= 0)); - this.ns6 = (this.ns && parseInt(this.vendver) == 6); // (this.mz && this.ns) ? true : false; - this.ns7 = (this.ns && parseInt(this.vendver) == 7); // this.agent.indexOf('Netscape/7')>0); this.chrome = (this.agent_lc.indexOf('chrome') > 0); this.safari = (!this.chrome && (this.agent_lc.indexOf('safari') > 0 || this.agent_lc.indexOf('applewebkit') > 0)); + this.mz = (this.dom && !this.ie && !this.ns && !this.chrome && !this.safari && this.agent.indexOf('Mozilla') >= 0); this.konq = (this.agent_lc.indexOf('konqueror') > 0); this.iphone = (this.safari && this.agent_lc.indexOf('iphone') > 0); this.ipad = (this.safari && this.agent_lc.indexOf('ipad') > 0); - this.opera = window.opera ? true : false; if (this.opera && window.RegExp) @@ -129,10 +126,6 @@ function roundcube_browser() classname += ' iphone'; else if (this.ipad) classname += ' ipad'; - else if (this.ns6) - classname += ' netscape6'; - else if (this.ns7) - classname += ' netscape7'; if (document.documentElement) document.documentElement.className += classname; |
