limit number of autocomplete results to 100, closes #44

This commit is contained in:
azivner 2018-02-13 19:37:07 -05:00
parent 0e9473119e
commit 1efac99828

View file

@ -126,6 +126,10 @@ $.ui.autocomplete.filter = (array, terms) => {
if (found) {
results.push(item);
if (results.length > 100) {
break;
}
}
}