diff options
author | Stefan Parviainen <saparvia@caterva.eu> | 2015-01-07 21:32:17 +0100 |
---|---|---|
committer | Stefan Parviainen <saparvia@caterva.eu> | 2015-01-07 21:32:17 +0100 |
commit | d7a3d9f60654a721cb00d78dd653fd56e4e9fb53 (patch) | |
tree | bd40ad4db6a69af5daf680ddbe851a524e4aa903 /view/js/mod_poke.js | |
parent | fcc9131fb9b1a0c115823c42a0828ce25670b215 (diff) | |
download | volse-hubzilla-d7a3d9f60654a721cb00d78dd653fd56e4e9fb53.tar.gz volse-hubzilla-d7a3d9f60654a721cb00d78dd653fd56e4e9fb53.tar.bz2 volse-hubzilla-d7a3d9f60654a721cb00d78dd653fd56e4e9fb53.zip |
Add autosubmit feature to textcomplete based autocompleter
Diffstat (limited to 'view/js/mod_poke.js')
-rw-r--r-- | view/js/mod_poke.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/view/js/mod_poke.js b/view/js/mod_poke.js index 3c07fcef7..58e50588f 100644 --- a/view/js/mod_poke.js +++ b/view/js/mod_poke.js @@ -1,5 +1,5 @@ $(document).ready(function() { - $("#poke-recip").contact_autocomplete(baseurl + '/acl', 'a', function(data) { + $("#poke-recip").contact_autocomplete(baseurl + '/acl', 'a', false, function(data) { $("#poke-recip-complete").val(data.id); }); }); |