aboutsummaryrefslogtreecommitdiff
path: root/example
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 /example
parent144aaa270ea7f443d80e3e1016690fa0c7b1e9f2 (diff)
treshold -> threshold
Diffstat (limited to 'example')
-rw-r--r--example/example.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/example/example.html b/example/example.html
index 225105d..1127b49 100644
--- a/example/example.html
+++ b/example/example.html
@@ -23,7 +23,7 @@
const ac = new Autocomplete(field, {
data: [{label: "I'm a label", value: 42}],
maximumItems: 5,
- treshold: 1,
+ threshold: 1,
onSelectItem: ({label, value}) => {
console.log("user selected:", label, value);
}