ALT+CTRL+C Keybind!

Don't try to stop me writing in a textbox with the keybind C again....
This commit is contained in:
Leon Meier 2023-06-27 23:40:52 +02:00
parent 656ca2f74a
commit ad84e6a3a0

View File

@ -105,7 +105,7 @@ function handleSearchSubmit(e) {
function handleHotKey(e) { function handleHotKey(e) {
// If c is pressed, focus on the search box // If c is pressed, focus on the search box
if(e.key == 'c') { if(e.key == 'c' && e.altKey && e.ctrlKey) {
// Show search_modal modal // Show search_modal modal
bootstrap.Modal.getOrCreateInstance($('#search_modal')).show() bootstrap.Modal.getOrCreateInstance($('#search_modal')).show()
document.getElementById('SearchBoxInput').focus(); document.getElementById('SearchBoxInput').focus();