From 3db62ce1015c134ff7a6b83294f8c2cbf1f1a096 Mon Sep 17 00:00:00 2001
From: Aleksander Machniak <alec@alec.pl>
Date: Fri, 03 May 2013 06:14:50 -0400
Subject: [PATCH] Fix messages list focus issue in Opera and Webkit (#1489058)

---
 program/js/list.js |    2 ++
 CHANGELOG          |    1 +
 2 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/CHANGELOG b/CHANGELOG
index 675c148..8aa7948 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,6 +1,7 @@
 CHANGELOG Roundcube Webmail
 ===========================
 
+- Fix messages list focus issue in Opera and Webkit (#1489058)
 - Make PHP code eval() free, use create_function()
 - Add option to display email address together with a name in mail preview (#1488732)
 - Fix Reply-To header handling in Reply-All action (#1489037)
diff --git a/program/js/list.js b/program/js/list.js
index dd99fd2..0385092 100644
--- a/program/js/list.js
+++ b/program/js/list.js
@@ -289,7 +289,9 @@
   }
 
   // Un-focus already focused elements (#1487123, #1487316, #1488600, #1488620)
+  // It looks that window.focus() does the job for all browsers, but not Firefox (#1489058)
   $(':focus:not(body)').blur();
+  window.focus();
 
   if (e || (e = window.event))
     rcube_event.cancel(e);

--
Gitblit v1.9.1