summaryrefslogtreecommitdiff
path: root/program
diff options
context:
space:
mode:
authoralecpl <alec@alec.pl>2010-11-15 09:26:24 +0000
committeralecpl <alec@alec.pl>2010-11-15 09:26:24 +0000
commit2c200021fdf9b5d1c73e39e7c46e7db1e4152e91 (patch)
tree327b0ae41759b93bb5b14977e16aa75e93396553 /program
parent6084d782f2e6e57248463bf10b99eeee543e0049 (diff)
- Fix focused elements aren't unfocused when clicking on the list (#1487123)
Diffstat (limited to 'program')
-rw-r--r--program/js/list.js4
1 files changed, 4 insertions, 0 deletions
diff --git a/program/js/list.js b/program/js/list.js
index aabba0842..406590b4c 100644
--- a/program/js/list.js
+++ b/program/js/list.js
@@ -214,6 +214,7 @@ focus: function(e)
{
var id;
this.focused = true;
+
for (var n in this.selection) {
id = this.selection[n];
if (this.rows[id] && this.rows[id].obj) {
@@ -221,6 +222,9 @@ focus: function(e)
}
}
+ // Un-focus already focused elements
+ $('*:focus').blur();
+
if (e || (e = window.event))
rcube_event.cancel(e);
},