From 61a8a161397ef6af6e1e9f2b4efa62a925e87879 Mon Sep 17 00:00:00 2001 From: zotlabs Date: Thu, 3 May 2018 17:37:16 -0700 Subject: add changes from ae35ac0cec3f6bf337 to contact_autocomplete so channel source completion will work correctly --- view/js/autocomplete.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/view/js/autocomplete.js b/view/js/autocomplete.js index b7ebe3293..97bb62fef 100644 --- a/view/js/autocomplete.js +++ b/view/js/autocomplete.js @@ -321,13 +321,14 @@ function string2bb(element) { var editor = new Textarea(this); var textcomplete = new Textcomplete(editor); textcomplete.register([contacts], {className:'acpopup', zIndex:1020}); + textcomplete.on('select', function() { aItem = textcomplete.dropdown.getActiveItem(); }); }); if(autosubmit) - this.on('select', function(e,value,strategy) { submit_form(this); }); + this.on('select', function() { submit_form(this); }); if(typeof onselect !== 'undefined') - this.on('select', function(e, value, strategy) { onselect(value); }); + this.on('select', function() { onselect(aItem.searchResult.data); }); }; })( jQuery ); -- cgit v1.2.3