mirror of
https://github.com/mofeng-git/One-KVM.git
synced 2026-01-31 18:11:54 +08:00
bindSimpleSwitch()
This commit is contained in:
@@ -36,11 +36,7 @@ export function Atx() {
|
||||
$("atx-power-led").title = "Power Led";
|
||||
$("atx-hdd-led").title = "Disk Activity Led";
|
||||
|
||||
$("atx-ask-switch").checked = tools.storage.getBool("atx.ask", true);
|
||||
tools.el.setOnClick($("atx-ask-switch"), function() {
|
||||
tools.storage.setBool("atx.ask", $("atx-ask-switch").checked);
|
||||
}, false);
|
||||
|
||||
tools.storage.bindSimpleSwitch($("atx-ask-switch"), "atx.ask", true);
|
||||
|
||||
for (let args of [
|
||||
["atx-power-button", "power", "Are you sure you want to press the power button?"],
|
||||
|
||||
@@ -74,10 +74,7 @@ export function Hid(__getResolution) {
|
||||
window.addEventListener("pagehide", __releaseAll);
|
||||
window.addEventListener("blur", __releaseAll);
|
||||
|
||||
$("hid-pak-ask-switch").checked = tools.storage.getBool("hid.pak.ask", true);
|
||||
tools.el.setOnClick($("hid-pak-ask-switch"), function() {
|
||||
tools.storage.setBool("hid.pak.ask", $("hid-pak-ask-switch").checked);
|
||||
}, false);
|
||||
tools.storage.bindSimpleSwitch($("hid-pak-ask-switch"), "hid.pak.ask", true);
|
||||
|
||||
$("hid-pak-keymap-selector").addEventListener("change", function() {
|
||||
tools.storage.set("hid.pak.keymap", $("hid-pak-keymap-selector").value);
|
||||
|
||||
@@ -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);
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user