quick fix for issue #1150 - needs improvement and review of other textcomplete implementations.

This commit is contained in:
Mario Vavti 2018-05-03 13:14:12 +02:00
parent 204838bd10
commit ae35ac0cec

View File

@ -353,19 +353,22 @@ function string2bb(element) {
this.attr('autocomplete','off');
var aItem;
var Textarea = Textcomplete.editors.Textarea;
$(this).each(function() {
var editor = new Textarea(this);
var textcomplete = new Textcomplete(editor);
textcomplete.register([names], {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 );