diff options
Diffstat (limited to 'view/js/autocomplete.js')
-rw-r--r-- | view/js/autocomplete.js | 5 |
1 files 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 ); |