diff options
author | Martin Fischer <martin@push-f.com> | 2021-11-27 12:58:36 +0100 |
---|---|---|
committer | Martin Fischer <martin@push-f.com> | 2021-11-27 13:05:53 +0100 |
commit | 66053a7ad733ff7bce6025dadd1a2128db2a1175 (patch) | |
tree | ed1ef11cabf6b5a870c62f1e6fa5986ced41faeb /script.js | |
parent | e2aab0547ad4f4c6bcb2f288e54a8f93e054b7fb (diff) |
html: design for noscript
Diffstat (limited to 'script.js')
-rw-r--r-- | script.js | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -3,6 +3,7 @@ const versions = await res.json(); const input = document.getElementById('search'); + input.focus(); input.addEventListener('input', (e) => { const query = e.target.value.toLowerCase(); for (const [key, data] of Object.entries(versions)) { |