summaryrefslogtreecommitdiff
path: root/autocomplete.js
diff options
context:
space:
mode:
authorEvgeny Zinoviev <me@ch1p.io>2022-01-05 17:56:50 +0300
committerEvgeny Zinoviev <me@ch1p.io>2022-01-05 17:56:50 +0300
commitbb0df53678c5b61c6adcf9c7939920f4ff5c11f3 (patch)
treee8a67d71bfcba66598e6660fd77ef755f54cb5e5 /autocomplete.js
parent144aaa270ea7f443d80e3e1016690fa0c7b1e9f2 (diff)
treshold -> threshold
Diffstat (limited to 'autocomplete.js')
-rw-r--r--autocomplete.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/autocomplete.js b/autocomplete.js
index a8de5fe..aa2ad12 100644
--- a/autocomplete.js
+++ b/autocomplete.js
@@ -1,5 +1,5 @@
const DEFAULTS = {
- treshold: 2,
+ threshold: 2,
maximumItems: 5,
highlightTyped: true,
highlightClass: 'text-primary',
@@ -90,7 +90,7 @@ class Autocomplete {
createItems() {
const lookup = this.field.value;
- if (lookup.length < this.options.treshold) {
+ if (lookup.length < this.options.threshold) {
this.dropdown.hide();
return 0;
}