ALT+CTRL+C Keybind!
Don't try to stop me writing in a textbox with the keybind C again....
This commit is contained in:
parent
656ca2f74a
commit
ad84e6a3a0
@ -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();
|
||||||
|
Loading…
Reference in New Issue
Block a user