diff options
author | Evgeny Zinoviev <me@ch1p.io> | 2022-01-05 17:56:50 +0300 |
---|---|---|
committer | Evgeny Zinoviev <me@ch1p.io> | 2022-01-05 17:56:50 +0300 |
commit | bb0df53678c5b61c6adcf9c7939920f4ff5c11f3 (patch) | |
tree | e8a67d71bfcba66598e6660fd77ef755f54cb5e5 /example | |
parent | 144aaa270ea7f443d80e3e1016690fa0c7b1e9f2 (diff) |
treshold -> threshold
Diffstat (limited to 'example')
-rw-r--r-- | example/example.html | 2 |
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); } |