diff options
author | svncommit <devs@roundcube.net> | 2008-09-17 11:22:05 +0000 |
---|---|---|
committer | svncommit <devs@roundcube.net> | 2008-09-17 11:22:05 +0000 |
commit | 8b7f5a3792d1514b7c0310c0f1dc5139958c1502 (patch) | |
tree | 4a2f5a442d8541b01caf2fcb83c49439be66856d /program/js/common.js | |
parent | c9e7c742aa15bb9e6cf2db7d4c99887e11507fc2 (diff) |
Workaround a (possible) IE bug (#1485309).
Diffstat (limited to 'program/js/common.js')
-rw-r--r-- | program/js/common.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/program/js/common.js b/program/js/common.js index be98feb28..5049061b4 100644 --- a/program/js/common.js +++ b/program/js/common.js @@ -49,6 +49,7 @@ function roundcube_browser() this.ie4 = (this.ie && !this.dom); this.ie5 = (this.dom && this.appver.indexOf('MSIE 5')>0); this.ie6 = (this.dom && this.appver.indexOf('MSIE 6')>0); + this.ie7 = (this.dom && this.appver.indexOf('MSIE 7')>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)); |