- Fix window is blur'ed in IE when selecting a message (#1487316)

release-0.6
alecpl 14 years ago
parent e17553d954
commit 489ffbde73

@ -4,6 +4,7 @@ CHANGELOG Roundcube Webmail
- Plugin API: Add 'pass' argument in 'authenticate' hook (#1487134) - Plugin API: Add 'pass' argument in 'authenticate' hook (#1487134)
- Fix attachments of type message/rfc822 are not listed on attachments list - Fix attachments of type message/rfc822 are not listed on attachments list
- Add 'login_lc' config option for case-insensitive authentication (#1487113) - Add 'login_lc' config option for case-insensitive authentication (#1487113)
- Fix window is blur'ed in IE when selecting a message (#1487316)
RELEASE 0.5-BETA RELEASE 0.5-BETA
---------------- ----------------

@ -223,7 +223,7 @@ focus: function(e)
} }
// Un-focus already focused elements // Un-focus already focused elements
$('*:focus').blur(); $('*:focus', window).blur();
if (e || (e = window.event)) if (e || (e = window.event))
rcube_event.cancel(e); rcube_event.cancel(e);

Loading…
Cancel
Save