We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2c6bb91 + 2f6cf8d commit f2e13bdCopy full SHA for f2e13bd
src/jquery.autocomplete.js
@@ -196,6 +196,7 @@
196
that.el.on('blur.autocomplete', function () { that.onBlur(); });
197
that.el.on('focus.autocomplete', function () { that.onFocus(); });
198
that.el.on('change.autocomplete', function (e) { that.onKeyUp(e); });
199
+ that.el.on('input.autocomplete', function (e) { that.onKeyUp(e); });
200
},
201
202
onFocus: function () {
@@ -670,7 +671,7 @@
670
671
html += '<div class="' + className + '" data-index="' + i + '">' + formatResult(suggestion, value) + '</div>';
672
});
673
- this.adjustContainerWidth();
674
+ this.adjustContainerWidth();
675
676
noSuggestionsContainer.detach();
677
container.html(html);
0 commit comments