summaryrefslogtreecommitdiff
path: root/plugins/acl/acl.js
diff options
context:
space:
mode:
authorThomas Bruederli <thomas@roundcube.net>2014-02-11 21:12:34 +0100
committerThomas Bruederli <thomas@roundcube.net>2014-02-11 21:12:34 +0100
commita23a2b3039800b5d4e71514aebe835afaf26bd81 (patch)
treec6075f82bba6e3e835106fc41016d4b9bb72eaf2 /plugins/acl/acl.js
parent03de1329efbcff2a4052ba6289bde1befb1ef0df (diff)
Update env in main window for ACL dialog autocompletion (#1489594)
Diffstat (limited to 'plugins/acl/acl.js')
-rw-r--r--plugins/acl/acl.js5
1 files changed, 5 insertions, 0 deletions
diff --git a/plugins/acl/acl.js b/plugins/acl/acl.js
index 7eb2653b3..acea60a4c 100644
--- a/plugins/acl/acl.js
+++ b/plugins/acl/acl.js
@@ -14,6 +14,11 @@ if (window.rcmail) {
var inst = rcmail.is_framed() ? parent.rcmail : rcmail;
inst.init_address_input_events($('#acluser'), {action:'settings/plugin.acl-autocomplete'});
+ // pass config settings and localized texts to autocomplete context
+ inst.set_env({ autocomplete_max:rcmail.env.autocomplete_max, autocomplete_min_length:rcmail.env.autocomplete_min_length });
+ inst.add_label('autocompletechars', rcmail.labels.autocompletechars);
+ inst.add_label('autocompletemore', rcmail.labels.autocompletemore);
+
// fix inserted value
inst.addEventListener('autocomplete_insert', function(e) {
if (e.field.id != 'acluser')