From bb0df53678c5b61c6adcf9c7939920f4ff5c11f3 Mon Sep 17 00:00:00 2001 From: Evgeny Zinoviev Date: Wed, 5 Jan 2022 17:56:50 +0300 Subject: treshold -> threshold --- autocomplete.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'autocomplete.js') 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; } -- cgit v1.2.3