diff --git a/static/js/searchBox.js b/static/js/searchBox.js index a396961..1b2f26d 100644 --- a/static/js/searchBox.js +++ b/static/js/searchBox.js @@ -105,7 +105,7 @@ function handleSearchSubmit(e) { function handleHotKey(e) { // 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 bootstrap.Modal.getOrCreateInstance($('#search_modal')).show() document.getElementById('SearchBoxInput').focus();