fix: disable browser autocomplete/history on search input
This commit is contained in:
parent
fcc7ff6145
commit
3307dfecb5
1 changed files with 9 additions and 1 deletions
10
index.html
10
index.html
|
|
@ -995,7 +995,15 @@
|
|||
<circle cx="11" cy="11" r="8"></circle>
|
||||
<line x1="21" y1="21" x2="16.65" y2="16.65"></line>
|
||||
</svg>
|
||||
<input type="search" id="search-input" placeholder="Search for tracks, artists, albums..." />
|
||||
<input
|
||||
type="search"
|
||||
id="search-input"
|
||||
placeholder="Search for tracks, artists, albums..."
|
||||
autocomplete="off"
|
||||
autocorrect="off"
|
||||
autocapitalize="off"
|
||||
spellcheck="false"
|
||||
/>
|
||||
<div id="search-history" class="search-history" style="display: none"></div>
|
||||
</form>
|
||||
</header>
|
||||
|
|
|
|||
Loading…
Reference in a new issue