diff options
author | Aleksander Machniak <alec@alec.pl> | 2014-04-12 15:26:08 +0200 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2014-04-12 15:26:08 +0200 |
commit | 361a919424d3a226f58a682019dc219c67085cf4 (patch) | |
tree | 856666692a648255e7355628055df7c855b93b94 /program | |
parent | dec27677ab63e01ad743db1b44118d7fb671b4be (diff) |
Remove last check for IE6
Diffstat (limited to 'program')
-rw-r--r-- | program/js/app.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/js/app.js b/program/js/app.js index 843854e5b..7191c0215 100644 --- a/program/js/app.js +++ b/program/js/app.js @@ -473,7 +473,7 @@ function rcube_webmail() $('#rcmloginpwd').focus(); // detect client timezone - if (window.jstz && !bw.ie6) { + if (window.jstz) { var timezone = jstz.determine(); if (timezone.name()) $('#rcmlogintz').val(timezone.name()); |