From ce29296fa9ce609ef8805207044f36658a515c31 Mon Sep 17 00:00:00 2001 From: Thomas Bruederli Date: Tue, 11 Feb 2014 21:12:34 +0100 Subject: Update env in main window for ACL dialog autocompletion (#1489594) --- plugins/acl/acl.js | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'plugins') 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') -- cgit v1.2.3