2
0
mirror of https://github.com/devbridge/jQuery-Autocomplete.git synced 2024-11-25 06:07:45 +00:00

Merge pull request #275 from danielgroves/patch-firefox-android

Fix for Firefox Android not updating
This commit is contained in:
Tomas Kirda 2014-11-24 19:57:03 -06:00
commit f2e13bdb5b

View File

@ -196,6 +196,7 @@
that.el.on('blur.autocomplete', function () { that.onBlur(); });
that.el.on('focus.autocomplete', function () { that.onFocus(); });
that.el.on('change.autocomplete', function (e) { that.onKeyUp(e); });
that.el.on('input.autocomplete', function (e) { that.onKeyUp(e); });
},
onFocus: function () {
@ -670,7 +671,7 @@
html += '<div class="' + className + '" data-index="' + i + '">' + formatResult(suggestion, value) + '</div>';
});
this.adjustContainerWidth();
this.adjustContainerWidth();
noSuggestionsContainer.detach();
container.html(html);