diff options
author | Aleksander Machniak <alec@alec.pl> | 2014-02-03 12:13:25 +0100 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2014-02-03 12:13:25 +0100 |
commit | 10abf2bc2d08526ad69c6e8691b0a3384603fcc1 (patch) | |
tree | 9c997cef9cc5a6a5703f4c8d5f35fb468982ea13 | |
parent | 254e284d215757fc06f1321cf15761a63661e81a (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.
-rw-r--r-- | program/js/list.js | 2 |
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)) |