perf: disable f1 key

pull/14311/head
ibuler 2024-10-16 15:06:00 +08:00 committed by feng626
parent 1b8cdbc4dd
commit 0e1e26c29c
1 changed files with 1 additions and 1 deletions

View File

@ -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)