summaryrefslogtreecommitdiff
path: root/web/share/js/kvm/mouse.js
diff options
context:
space:
mode:
Diffstat (limited to 'web/share/js/kvm/mouse.js')
-rw-r--r--web/share/js/kvm/mouse.js5
1 files changed, 1 insertions, 4 deletions
diff --git a/web/share/js/kvm/mouse.js b/web/share/js/kvm/mouse.js
index c3215d55..cfc70bff 100644
--- a/web/share/js/kvm/mouse.js
+++ b/web/share/js/kvm/mouse.js
@@ -61,10 +61,7 @@ export function Mouse(__getResolution, __recordWsEvent) {
$("stream-box").onwheel = __streamWheelHandler;
$("stream-box").ontouchstart = (event) => __streamTouchMoveHandler(event);
- $("hid-mouse-squash-switch").checked = tools.storage.getBool("hid.mouse.squash", true);
- tools.el.setOnClick($("hid-mouse-squash-switch"), function() {
- tools.storage.setBool("hid.mouse.squash", $("hid-mouse-squash-switch").checked);
- }, false);
+ tools.storage.bindSimpleSwitch($("hid-mouse-squash-switch"), "hid.mouse.squash", true);
setInterval(__sendMove, 100);
};