Fix message list header in classic skin on window resize in Internet Explorer (#1490213)

pull/280/head
Aleksander Machniak 9 years ago
parent b41140ba37
commit d671bed7eb

@ -6,6 +6,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
-------------

@ -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')

Loading…
Cancel
Save