diff options
author | Thomas Bruederli <thomas@roundcube.net> | 2014-06-25 15:17:35 +0200 |
---|---|---|
committer | Thomas Bruederli <thomas@roundcube.net> | 2014-06-25 15:17:35 +0200 |
commit | 0b2586fca3efa70a372346df613917822e5737eb (patch) | |
tree | 667f50a0a6858236eb49571d9aae310d210f556b /program/js/app.js | |
parent | 6fa1a0da1f0902f10be8fc4eb24180f8e3453c17 (diff) |
Remove focus on mouse clicks
Diffstat (limited to 'program/js/app.js')
-rw-r--r-- | program/js/app.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/js/app.js b/program/js/app.js index 7e67a9c88..8f2065635 100644 --- a/program/js/app.js +++ b/program/js/app.js @@ -630,7 +630,7 @@ function rcube_webmail() { var ret, uid, cid, url, flag, aborted = false; - if (obj && obj.blur && !(event || rcube_event.is_keyboard(event))) + if (obj && obj.blur && !(event && rcube_event.is_keyboard(event))) obj.blur(); // do nothing if interface is locked by other command (with exception for searching reset) |