mirror of
https://github.com/mofeng-git/One-KVM.git
synced 2026-01-29 09:01:54 +08:00
web: option to remap ctrl/caps
This commit is contained in:
@@ -150,6 +150,10 @@ ul#navbar li div.menu details div.spoiler {
|
||||
border-left: var(--border-default-thin);
|
||||
border-bottom: var(--border-default-thin);
|
||||
}
|
||||
ul#navbar li div.menu details div.spoiler hr {
|
||||
border: none;
|
||||
border-top: var(--border-default-thin);
|
||||
}
|
||||
ul#navbar li div.menu details summary::marker {
|
||||
color: var(--cs-marker-fg);
|
||||
}
|
||||
|
||||
@@ -51,6 +51,8 @@ export function Keyboard(__recordWsEvent) {
|
||||
|
||||
window.addEventListener("focusin", __updateOnlineLeds);
|
||||
window.addEventListener("focusout", __updateOnlineLeds);
|
||||
|
||||
tools.storage.bindSimpleSwitch($("hid-keyboard-swap-cc-switch"), "hid.keyboard.swap_cc", false);
|
||||
};
|
||||
|
||||
/************************************************************************/
|
||||
@@ -129,6 +131,13 @@ export function Keyboard(__recordWsEvent) {
|
||||
|
||||
var __sendKey = function(code, state) {
|
||||
tools.debug("Keyboard: key", (state ? "pressed:" : "released:"), code);
|
||||
if ($("hid-keyboard-swap-cc-switch").checked) {
|
||||
if (code === "ControlLeft") {
|
||||
code = "CapsLock";
|
||||
} else if (code === "CapsLock") {
|
||||
code = "ControlLeft";
|
||||
}
|
||||
}
|
||||
let event = {
|
||||
"event_type": "key",
|
||||
"event": {"key": code, "state": state},
|
||||
|
||||
Reference in New Issue
Block a user