mirror of
https://github.com/alvierahman90/gronk.git
synced 2025-01-12 02:04:19 +00:00
Compare commits
No commits in common. "fa8840d25ec52a96fddb0bf9f21c79d379f8b5cc" and "6638c722308b074de8c24ad80e66bd565bca41d8" have entirely different histories.
fa8840d25e
...
6638c72230
@ -6,7 +6,7 @@ const TITLE = "title"
|
||||
const SEARCH_TIMEOUT_MS = 100
|
||||
var SEARCH_TIMEOUT_ID = -1
|
||||
|
||||
const fuse = new Fuse(search_data, {
|
||||
const fuse = new Fuse(data, {
|
||||
keys: [ 'title' ],
|
||||
ignoreLocation: true,
|
||||
threshhold: 0.4,
|
||||
@ -30,7 +30,7 @@ function updateResults() {
|
||||
console.log("updating results")
|
||||
resultsDiv.innerHTML = ''
|
||||
if (searchBar.value) results = fuse.search(searchBar.value, { limit: RESULTS_MAX }).map(r => r.item)
|
||||
else results = search_data
|
||||
else results = data
|
||||
|
||||
results.forEach(r => {
|
||||
wrapper = document.createElement('li')
|
||||
|
Loading…
Reference in New Issue
Block a user