diff options
author | Alex Shpak <alex-shpak@users.noreply.github.com> | 2019-08-08 13:15:19 +0200 |
---|---|---|
committer | Alex Shpak <alex-shpak@users.noreply.github.com> | 2019-08-08 13:17:47 +0200 |
commit | df8d186d381557da67fe550bce1490b868932724 (patch) | |
tree | f9c5c43579fb6a952c7c60520844fd1484a376b7 /exampleSite/resources/_gen/assets/js/search.js_db9e329433ffca0798ed12c88043b3b3.content | |
parent | b95fbf9750f347d166ed11365a2447b290a6a17c (diff) |
Jsonify title in search as well
Diffstat (limited to 'exampleSite/resources/_gen/assets/js/search.js_db9e329433ffca0798ed12c88043b3b3.content')
-rw-r--r-- | exampleSite/resources/_gen/assets/js/search.js_db9e329433ffca0798ed12c88043b3b3.content | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/exampleSite/resources/_gen/assets/js/search.js_db9e329433ffca0798ed12c88043b3b3.content b/exampleSite/resources/_gen/assets/js/search.js_db9e329433ffca0798ed12c88043b3b3.content index 93b9de9..51407a7 100644 --- a/exampleSite/resources/_gen/assets/js/search.js_db9e329433ffca0798ed12c88043b3b3.content +++ b/exampleSite/resources/_gen/assets/js/search.js_db9e329433ffca0798ed12c88043b3b3.content @@ -1,4 +1,4 @@ -(function(){const input=document.querySelector("#book-search-input");const results=document.querySelector("#book-search-results");input.addEventListener("focus",init);input.addEventListener("keyup",search);function init(){input.removeEventListener("focus",init);input.required=true;loadScript("/example/lunr.min.js");loadScript("/example/search-data.min.34183091f91a205581bbdcc247f638b72d22f51e34ab573b24519f95c4a92895.js",function(){input.readOnly=false;input.required=false;search();});} +(function(){const input=document.querySelector("#book-search-input");const results=document.querySelector("#book-search-results");input.addEventListener("focus",init);input.addEventListener("keyup",search);function init(){input.removeEventListener("focus",init);input.required=true;loadScript("/example/lunr.min.js");loadScript("/example/search-data.min.c533c453016d71fbd7fb228486a062cd64dfc3987b3d5c118b93c450abba2bc7.js",function(){input.readOnly=false;input.required=false;search();});} function search(){while(results.firstChild){results.removeChild(results.firstChild);} if(!input.value){return;} const terms=lunr.tokenizer(input.value);const searchHits=window.bookSearch.idx.query(function(query){query.term(terms,{boost:100});query.term(terms,{boost:10,wildcard:lunr.Query.wildcard.LEADING|lunr.Query.wildcard.TRAILING});query.term(terms,{editDistance:2});});searchHits.slice(0,10).forEach(function(hit){const page=window.bookSearch.pages[hit.ref];const li=document.createElement("li"),a=li.appendChild(document.createElement("a"));a.href=page.href;a.textContent=page.title;results.appendChild(li);});} |