mirror of
https://github.com/devbridge/jQuery-Autocomplete.git
synced 2024-11-09 23:01:00 +00:00
always work only after the show() method
This commit is contained in:
parent
b34fc5d9c7
commit
3048f48d1b
@ -658,6 +658,13 @@
|
||||
noSuggestionsContainer.detach();
|
||||
container.html(html);
|
||||
|
||||
if ($.isFunction(beforeRender)) {
|
||||
beforeRender.call(that.element, container);
|
||||
}
|
||||
|
||||
that.fixPosition();
|
||||
container.show();
|
||||
|
||||
// Select first value by default:
|
||||
if (options.autoSelectFirst) {
|
||||
that.selectedIndex = 0;
|
||||
@ -665,15 +672,7 @@
|
||||
container.children().first().addClass(classSelected);
|
||||
}
|
||||
|
||||
if ($.isFunction(beforeRender)) {
|
||||
beforeRender.call(that.element, container);
|
||||
}
|
||||
|
||||
that.fixPosition();
|
||||
|
||||
container.show();
|
||||
that.visible = true;
|
||||
|
||||
that.findBestHint();
|
||||
},
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user