diff options
author | Aleksander Machniak <alec@alec.pl> | 2013-05-03 12:14:50 +0200 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2013-05-03 12:14:50 +0200 |
commit | 3db62ce1015c134ff7a6b83294f8c2cbf1f1a096 (patch) | |
tree | 0f441d7d9e7bda01f697b06664f86c0ce177a826 /program/js | |
parent | 517dae3e74e39aceabaf2c5da330849a21e82d81 (diff) |
Fix messages list focus issue in Opera and Webkit (#1489058)
Diffstat (limited to 'program/js')
-rw-r--r-- | program/js/list.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/program/js/list.js b/program/js/list.js index dd99fd2f2..0385092d6 100644 --- a/program/js/list.js +++ b/program/js/list.js @@ -289,7 +289,9 @@ 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(); + window.focus(); if (e || (e = window.event)) rcube_event.cancel(e); |