diff options
author | Maxim Devaev <[email protected]> | 2021-08-12 10:21:35 +0300 |
---|---|---|
committer | Maxim Devaev <[email protected]> | 2021-08-12 10:21:35 +0300 |
commit | d7f65ad78854f97f439e1d79f3f25a9706d0f15f (patch) | |
tree | 309f529a68de28907d6c28f2cf1efa2c89e55b3c /web/share/js/kvm/atx.js | |
parent | 68897c94ac21b0fc5b1e30b647549c9b46aa387d (diff) |
refactoring
Diffstat (limited to 'web/share/js/kvm/atx.js')
-rw-r--r-- | web/share/js/kvm/atx.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/web/share/js/kvm/atx.js b/web/share/js/kvm/atx.js index 380dfb51..fb1e0d28 100644 --- a/web/share/js/kvm/atx.js +++ b/web/share/js/kvm/atx.js @@ -36,9 +36,9 @@ export function Atx() { $("atx-power-led").title = "Power Led"; $("atx-hdd-led").title = "Disk Activity Led"; - $("atx-ask-switch").checked = parseInt(tools.storage.get("atx.ask", "1")); + $("atx-ask-switch").checked = tools.storage.getBool("atx.ask", true); tools.el.setOnClick($("atx-ask-switch"), function() { - tools.storage.set("atx.ask", ($("atx-ask-switch").checked ? 1 : 0)); + tools.storage.setBool("atx.ask", $("atx-ask-switch").checked); }, false); |