summaryrefslogtreecommitdiff
path: root/program/js
diff options
context:
space:
mode:
authoralecpl <alec@alec.pl>2009-04-10 11:11:45 +0000
committeralecpl <alec@alec.pl>2009-04-10 11:11:45 +0000
commit58c9dd72935e9ea4403681997bb1beb291d70bd4 (patch)
tree8dfcde875c91f2b6b53829554e34579c1cdd3c71 /program/js
parent942069969cfd95784f872b3bef2cc6323fc55c3d (diff)
- Fix DEL key problem in search boxes (#1485528)
Diffstat (limited to 'program/js')
-rw-r--r--program/js/app.js9
-rw-r--r--program/js/list.js2
2 files changed, 6 insertions, 5 deletions
diff --git a/program/js/app.js b/program/js/app.js
index 7f60de544..42ea5d95d 100644
--- a/program/js/app.js
+++ b/program/js/app.js
@@ -1158,7 +1158,7 @@ function rcube_webmail()
this.doc_mouse_up = function(e)
{
var model, li;
-
+
if (this.message_list) {
this.message_list.blur();
model = this.env.mailboxes;
@@ -1170,7 +1170,7 @@ function rcube_webmail()
else if (this.ksearch_value) {
this.ksearch_blur();
}
-
+
// handle mouse release when dragging
if (this.drag_active && model && this.env.last_folder_target) {
this.set_classname(this.get_folder_li(this.env.last_folder_target), 'droptarget', false);
@@ -1299,10 +1299,13 @@ function rcube_webmail()
this.click_on_list = function(e)
{
+ if (this.gui_objects.qsearchbox)
+ this.gui_objects.qsearchbox.blur();
+
if (this.message_list)
this.message_list.focus();
else if (this.contact_list)
- this.contact_list.focus();
+ this.contact_list.focus();
var mbox_li;
if (mbox_li = this.get_folder_li())
diff --git a/program/js/list.js b/program/js/list.js
index 7bae7a5f6..7d16080c5 100644
--- a/program/js/list.js
+++ b/program/js/list.js
@@ -824,8 +824,6 @@ drag_mouse_up: function(e)
}
}
- this.focus();
-
return rcube_event.cancel(e);
},