diff options
author | Maxim Devaev <[email protected]> | 2023-10-26 08:28:18 +0300 |
---|---|---|
committer | Maxim Devaev <[email protected]> | 2023-10-26 08:28:18 +0300 |
commit | 7bb553110068fa0ae5a5ed230d58322ded385ade (patch) | |
tree | 810c056d9b03aea5b0c3929546b7b4486558297e /web/kvm | |
parent | aec67270205ac9d149c0c71a1891f4942eba477b (diff) |
option to disable jiggler
Diffstat (limited to 'web/kvm')
-rw-r--r-- | web/kvm/index.html | 2 | ||||
-rw-r--r-- | web/kvm/navbar-system.pug | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/web/kvm/index.html b/web/kvm/index.html index 33533dc1..9338e756 100644 --- a/web/kvm/index.html +++ b/web/kvm/index.html @@ -350,7 +350,7 @@ </div> </td> </tr> - <tr> + <tr class="feature-disabled" id="hid-jiggler"> <td>Mouse jiggler:</td> <td align="right"> <div class="switch-box"> diff --git a/web/kvm/navbar-system.pug b/web/kvm/navbar-system.pug index f41e0abb..d1016d42 100644 --- a/web/kvm/navbar-system.pug +++ b/web/kvm/navbar-system.pug @@ -103,7 +103,7 @@ li(id="system-dropdown" class="right") table(class="kv") tr(id="hid-connect" class="feature-disabled") +menu_switch_notable("hid-connect-switch", "Connect HID to Server", true, true) - tr + tr(id="hid-jiggler" class="feature-disabled") +menu_switch_notable("hid-jiggler-switch", "Mouse jiggler", false, false) tr +menu_switch_notable("hid-mute-switch", "Mute HID input events", true, false) |