From c0d8ec001b71ca5170efcc4959a4f2a88a3a7875 Mon Sep 17 00:00:00 2001 From: Aleksander Machniak Date: Mon, 3 Feb 2014 12:13:25 +0100 Subject: Fix bug where it wasn't possible to focus the messages list with mouse click on a record after the focus was put on preview frame. --- program/js/list.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/program/js/list.js b/program/js/list.js index c5ecf6c22..e05d9fb4b 100644 --- a/program/js/list.js +++ b/program/js/list.js @@ -365,7 +365,7 @@ focus: function(e) // 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(); + $('iframe,:focus:not(body)').blur(); window.focus(); if (e || (e = window.event)) -- cgit v1.2.3