diff options
author | Aleksander Machniak <alec@alec.pl> | 2014-04-12 14:01:07 +0200 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2014-04-12 14:01:07 +0200 |
commit | 64542fc8035b71252dd7d8678dd82e1a910a76c4 (patch) | |
tree | 5d0458ca0388d54547cbcc1fdd7b4bb145741a0f /program/js/common.js | |
parent | 0ca75d488059b685ae344dbb629aa935dce3ab79 (diff) |
Drop support for IE6, move IE7/IE8 support to legacy_browser plugin, update to jQuery-2.1.0
Diffstat (limited to 'program/js/common.js')
-rw-r--r-- | program/js/common.js | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/program/js/common.js b/program/js/common.js index 722eb3f60..ed9488b2c 100644 --- a/program/js/common.js +++ b/program/js/common.js @@ -53,7 +53,6 @@ function roundcube_browser() this.ie = (document.all && !window.opera) || (this.win && this.agent_lc.indexOf('trident/') > 0); if (this.ie) { - this.ie6 = this.appver.indexOf('MSIE 6') > 0; this.ie7 = this.appver.indexOf('MSIE 7') > 0; this.ie8 = this.appver.indexOf('MSIE 8') > 0; this.ie9 = this.appver.indexOf('MSIE 9') > 0; |