diff options
author | alecpl <alec@alec.pl> | 2010-11-30 20:13:44 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2010-11-30 20:13:44 +0000 |
commit | 489ffbde732bb0560e4b553bc97aa8b831b97d8f (patch) | |
tree | 2bf41a0008be6493b45ab5138519f2fc50b4f397 | |
parent | e17553d9548d4870a4579a86c6e425a7f32aecf5 (diff) |
- Fix window is blur'ed in IE when selecting a message (#1487316)
-rw-r--r-- | CHANGELOG | 1 | ||||
-rw-r--r-- | program/js/list.js | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -4,6 +4,7 @@ CHANGELOG Roundcube Webmail - Plugin API: Add 'pass' argument in 'authenticate' hook (#1487134) - Fix attachments of type message/rfc822 are not listed on attachments list - 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 ---------------- diff --git a/program/js/list.js b/program/js/list.js index 406590b4c..2ccbdd1fa 100644 --- a/program/js/list.js +++ b/program/js/list.js @@ -223,7 +223,7 @@ focus: function(e) } // Un-focus already focused elements - $('*:focus').blur(); + $('*:focus', window).blur(); if (e || (e = window.event)) rcube_event.cancel(e); |