Skip to content
Snippets Groups Projects
Commit 781930e5 authored by Jean-Baptiste Pasquier's avatar Jean-Baptiste Pasquier
Browse files

feature: implement ctrl+k

parent a752e44e
No related branches found
No related tags found
1 merge request!285Feature/mobile right menu
Pipeline #10938 failed
document.addEventListener("keydown", function (e) {
/*
CTRL + K : Focus on the user search
*/
if(e.ctrlKey && e.key == "k") {
document.querySelector('#general-search input[type="text"]').focus();
e.preventDefault();
}
});
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment