diff options
author | Aleksander Machniak <alec@alec.pl> | 2012-09-04 19:29:16 +0200 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2012-09-04 19:29:16 +0200 |
commit | e263994adc3f8f331c6167da1665c1920a5142f9 (patch) | |
tree | 9db2645a697d470b62e7c71fc731fb5858e32f9e /program/js | |
parent | 2c0d038396024c85ada00c10324a56ab7557f8d0 (diff) |
Fix focus issue in IE when selecting message row (#1488620)
Diffstat (limited to 'program/js')
-rw-r--r-- | program/js/list.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/program/js/list.js b/program/js/list.js index e84124b7c..1457382a4 100644 --- a/program/js/list.js +++ b/program/js/list.js @@ -231,8 +231,8 @@ focus: function(e) } } - // Un-focus already focused elements - $(document.activeElement).blur(); + // Un-focus already focused elements (#1487123, #1487316, #1488600, #1488620) + $(':focus:not(body)').blur(); $('iframe').each(function() { this.blur(); }); if (e || (e = window.event)) |