diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2011-09-21 17:35:04 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2011-09-21 17:35:04 +0000 |
| commit | f21d21e74ffba0852fe02eb7cad9d62d6b5735d4 (patch) | |
| tree | f6ec5174d2e24e08468c00dc929c52ec45ad306f /plugins/acl/acl.js | |
| parent | d80ad91b666dcc8d2f87d2a2b26ce318f3007f4a (diff) | |
- Make the plugin aware of autocomplete_* options
- Fix non-working backspace key in name field
git-svn-id: https://svn.roundcube.net/trunk@5263 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'plugins/acl/acl.js')
| -rw-r--r-- | plugins/acl/acl.js | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/plugins/acl/acl.js b/plugins/acl/acl.js index 4b1431ac3..488e72722 100644 --- a/plugins/acl/acl.js +++ b/plugins/acl/acl.js @@ -1,7 +1,7 @@ /** * ACL plugin script * - * @version 0.6.1 + * @version 0.6.2 * @author Aleksander Machniak <alec@alec.pl> */ @@ -315,6 +315,9 @@ rcube_webmail.prototype.acl_init_form = function(id) this.acl_form.show(); if (type == 'user') name_input.focus(); + + // unfocus the list, make backspace key in name input field working + this.acl_list.blur(); } // Returns class name according to ACL comparision result |
