Fix option syntax for textcomplete

This commit is contained in:
Hypolite Petovan 2020-08-08 15:19:04 -04:00
parent 5e0b4b8a8f
commit 7a5f2437f9

View file

@ -293,7 +293,7 @@ function string2bb(element) {
}; };
this.attr('autocomplete','off'); this.attr('autocomplete','off');
this.textcomplete([contacts, forums, smilies, tags], {className:'acpopup', zIndex:10000}); this.textcomplete([contacts, forums, smilies, tags], {dropdown: {className:'acpopup'}});
this.fixTextcompleteEscape(); this.fixTextcompleteEscape();
return this; return this;
@ -328,7 +328,7 @@ function string2bb(element) {
}; };
this.attr('autocomplete', 'off'); this.attr('autocomplete', 'off');
this.textcomplete([contacts, community, tags], {className:'acpopup', maxCount:100, zIndex: 10000, appendTo:'nav'}); this.textcomplete([contacts, community, tags], {dropdown: {className:'acpopup', maxCount:100}});
this.fixTextcompleteEscape(); this.fixTextcompleteEscape();
this.on('textComplete:select', function(e, value, strategy) { submit_form(this); }); this.on('textComplete:select', function(e, value, strategy) { submit_form(this); });
@ -349,7 +349,7 @@ function string2bb(element) {
}; };
this.attr('autocomplete','off'); this.attr('autocomplete','off');
this.textcomplete([names], {className:'acpopup', zIndex:10000}); this.textcomplete([names], {dropdown: {className:'acpopup'}});
this.fixTextcompleteEscape(); this.fixTextcompleteEscape();
if(autosubmit) { if(autosubmit) {
@ -399,7 +399,7 @@ function string2bb(element) {
}; };
this.attr('autocomplete','off'); this.attr('autocomplete','off');
this.textcomplete([bbco], {className:'acpopup', zIndex:10000}); this.textcomplete([bbco], {dropdown: {className:'acpopup'}});
this.fixTextcompleteEscape(); this.fixTextcompleteEscape();
this.on('textComplete:select', function(e, value, strategy) { value; }); this.on('textComplete:select', function(e, value, strategy) { value; });