summaryrefslogtreecommitdiff
path: root/program
diff options
context:
space:
mode:
authorAleksander Machniak <alec@alec.pl>2014-02-03 12:13:25 +0100
committerAleksander Machniak <alec@alec.pl>2014-02-03 12:15:46 +0100
commitc0d8ec001b71ca5170efcc4959a4f2a88a3a7875 (patch)
tree004da3cd5b57266c065423298f92df827c27a089 /program
parent50217a9eb523e1e14ddffaf04f5544a3c5074b41 (diff)
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.
Diffstat (limited to 'program')
-rw-r--r--program/js/list.js2
1 files changed, 1 insertions, 1 deletions
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))