From b918e123d61625f2442f4fadedc2f0d0ec38ddba Mon Sep 17 00:00:00 2001 From: alec Date: Tue, 30 Nov 2010 20:13:44 +0000 Subject: - Fix window is blur'ed in IE when selecting a message (#1487316) git-svn-id: https://svn.roundcube.net/trunk@4292 208e9e7b-5314-0410-a742-e7e81cd9613c --- roundcubemail/CHANGELOG | 1 + roundcubemail/program/js/list.js | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/roundcubemail/CHANGELOG b/roundcubemail/CHANGELOG index 171e3563d..4eabb8831 100644 --- a/roundcubemail/CHANGELOG +++ b/roundcubemail/CHANGELOG @@ -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/roundcubemail/program/js/list.js b/roundcubemail/program/js/list.js index 406590b4c..2ccbdd1fa 100644 --- a/roundcubemail/program/js/list.js +++ b/roundcubemail/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); -- cgit v1.2.3