#74, Remove readonly flag from search field
This commit is contained in:
parent
22ff783d86
commit
77255304f3
2 changed files with 1 additions and 2 deletions
|
@ -13,7 +13,6 @@
|
|||
|
||||
loadScript("{{ "lunr.min.js" | relURL }}");
|
||||
loadScript("{{ $searchData.RelPermalink }}", function() {
|
||||
input.readOnly = false;
|
||||
input.required = false;
|
||||
search();
|
||||
});
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{{ if default true .Site.Params.BookSearch }}
|
||||
<div class="book-search">
|
||||
<input type="text" placeholder="Search" id="book-search-input" maxlength="64" readonly />
|
||||
<input type="text" placeholder="Search" id="book-search-input" maxlength="64" />
|
||||
<div class="book-search-spinner spinner hidden"></div>
|
||||
<ul id="book-search-results"></ul>
|
||||
</div>
|
||||
|
|
Loading…
Reference in a new issue