Add JS to focus search box on '/'

This commit is contained in:
Samantaz Fox 2022-01-13 22:20:10 +01:00
parent 6cf6c56dd1
commit 8aed1e11c3
No known key found for this signature in database
GPG Key ID: F42821059186176E

View File

@ -142,4 +142,16 @@
var csrf_token = target.parentNode.querySelector('input[name="csrf_token"]').value;
xhr.send('csrf_token=' + csrf_token);
}
// Handle keypresses
window.addEventListener('keydown', (event) => {
// Ignore modifier keys
if (event.ctrlKey || event.metaKey) { return; }
// Focus search bar on '/'
if (event.key == "/") {
document.getElementById('searchbox').focus();
event.preventDefault();
}
});
})();