diff options
-rw-r--r-- | CHANGELOG | 1 | ||||
-rw-r--r-- | program/js/list.js | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -1,6 +1,7 @@ CHANGELOG Roundcube Webmail =========================== +- Fix focus on the list when list row is clicked (#1488600) - Added separate From and To columns apart from smart From/To column (#1486891) - Fix fallback to Larry skin when configured skin isn't available (#1488591) - Fix (workaround) delete operations with some versions of memcache (#1488592) diff --git a/program/js/list.js b/program/js/list.js index b194721f4..e84124b7c 100644 --- a/program/js/list.js +++ b/program/js/list.js @@ -232,7 +232,7 @@ focus: function(e) } // Un-focus already focused elements - $('*:focus', window).blur(); + $(document.activeElement).blur(); $('iframe').each(function() { this.blur(); }); if (e || (e = window.event)) |