summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAleksander Machniak <alec@alec.pl>2015-04-06 12:51:00 +0200
committerAleksander Machniak <alec@alec.pl>2015-04-06 12:51:00 +0200
commitb0c502c4c2cbe8e2bc4c70afadf0d3700810dd24 (patch)
tree65aad6647c310a62240d98234a24ba658c44f9a3
parent48d01837a0a5725d2779f30d20478e77572e9ac5 (diff)
Fix message list header in classic skin on window resize in Internet Explorer (#1490213)
-rw-r--r--CHANGELOG1
-rw-r--r--skins/classic/functions.js6
2 files changed, 7 insertions, 0 deletions
diff --git a/CHANGELOG b/CHANGELOG
index d79610b2d..9b89a46a9 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -11,6 +11,7 @@ CHANGELOG Roundcube Webmail
- Fix vpopmaild driver of password plugin
- Fix PHP warning: Non-static method PEAR::setErrorHandling() should not be called statically (#1490343)
- Fix tables listing routine on mysql and postgres so it skips system or other database tables and views (#1490337)
+- Fix message list header in classic skin on window resize in Internet Explorer (#1490213)
RELEASE 1.1.1
-------------
diff --git a/skins/classic/functions.js b/skins/classic/functions.js
index aaa4f7288..5a5ad3950 100644
--- a/skins/classic/functions.js
+++ b/skins/classic/functions.js
@@ -1027,6 +1027,12 @@ function rcube_init_mail_ui()
.addEventListener('afterimport-messages', function(){ rcmail_ui.show_popup('uploadform', false); });
}
+ // fix message list header on window resize (#1490213)
+ if (bw.ie && rcmail.message_list)
+ $(window).resize(function() {
+ setTimeout(function() { rcmail.message_list.resize(); }, 10);
+ });
+
if (rcmail.env.action == 'compose')
rcmail_ui.init_compose_form();
else if (rcmail.env.action == 'show' || rcmail.env.action == 'preview')