mirror of https://github.com/jumpserver/jumpserver
perf: disable f1 key
parent
1b8cdbc4dd
commit
0e1e26c29c
|
@ -36,7 +36,7 @@ document.addEventListener("contextmenu", function (event) {
|
||||||
|
|
||||||
const AllowedKeys = ['P', 'F', 'C', 'V']
|
const AllowedKeys = ['P', 'F', 'C', 'V']
|
||||||
window.addEventListener("keydown", function (e) {
|
window.addEventListener("keydown", function (e) {
|
||||||
if (e.key === "F12" || (e.ctrlKey && !AllowedKeys.includes(e.key.toUpperCase()))) {
|
if (e.key === "F12" || e.key === "F1" || (e.ctrlKey && !AllowedKeys.includes(e.key.toUpperCase()))) {
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
e.stopPropagation();
|
e.stopPropagation();
|
||||||
debug('Press key: ', e.ctrlKey ? 'Ctrl' : '', e.shiftKey ? ' Shift' : '', e.key)
|
debug('Press key: ', e.ctrlKey ? 'Ctrl' : '', e.shiftKey ? ' Shift' : '', e.key)
|
||||||
|
|
Loading…
Reference in New Issue