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 1f5bb2b + 9ca3ca2 commit c2cd9b7Copy full SHA for c2cd9b7
src/autocomplete.js
@@ -185,7 +185,7 @@ var AutoComplete = (function () {
185
} else if (first) {
186
attrClass(first, "active");
187
}
188
- } else if (keyCode < 35 || keyCode > 40) {
+ } else if (keyCode != 13 && (keyCode < 35 || keyCode > 40)) {
189
if (inputValue && custParams.url) {
190
if (!dataAutocompleteOldValue || inputValue != dataAutocompleteOldValue) {
191
attrClass(result, "autocomplete open");
0 commit comments