summaryrefslogtreecommitdiff
path: root/plugins/acl/acl.js
diff options
context:
space:
mode:
authoralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2011-07-22 10:26:05 +0000
committeralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2011-07-22 10:26:05 +0000
commitf33ed0595ff563e9f6dbc3b6cf84352aab562a2c (patch)
tree85fa75b16874d856ef9b0341c590049579d71010 /plugins/acl/acl.js
parentce4fc106aa374a82aea8a03bb887be37ccff6dfb (diff)
- Hide autocomplete popup on Cancel/Save action
git-svn-id: https://svn.roundcube.net/trunk@4952 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'plugins/acl/acl.js')
-rw-r--r--plugins/acl/acl.js3
1 files changed, 3 insertions, 0 deletions
diff --git a/plugins/acl/acl.js b/plugins/acl/acl.js
index 9ca0a2384..1831ea0c9 100644
--- a/plugins/acl/acl.js
+++ b/plugins/acl/acl.js
@@ -93,6 +93,7 @@ rcube_webmail.prototype.acl_save = function()
// Cancel/Hide form
rcube_webmail.prototype.acl_cancel = function()
{
+ this.ksearch_blur();
this.acl_form.hide();
}
@@ -108,6 +109,8 @@ rcube_webmail.prototype.acl_update = function(o)
// add new row
this.acl_add_row(o, true);
+ // hide autocomplete popup
+ this.ksearch_blur();
// hide form
this.acl_form.hide();
}