diff options
-rw-r--r-- | web/share/js/kvm/atx.js | 6 | ||||
-rw-r--r-- | web/share/js/kvm/mouse.js | 6 |
2 files changed, 2 insertions, 10 deletions
diff --git a/web/share/js/kvm/atx.js b/web/share/js/kvm/atx.js index d65d1ded..a7c6bbed 100644 --- a/web/share/js/kvm/atx.js +++ b/web/share/js/kvm/atx.js @@ -45,11 +45,7 @@ export function Atx() { self.setState = function(state) { if (state) { - if (state.enabled) { - $("atx-dropdown").classList.remove("feature-disabled"); - } else { - $("atx-dropdown").classList.add("feature-disabled"); - } + $("atx-dropdown").classList.toggle("feature-disabled", !state.enabled); } $("atx-power-led").className = ((state && state.leds.power) ? "led-green" : "led-gray"); diff --git a/web/share/js/kvm/mouse.js b/web/share/js/kvm/mouse.js index 03d90a06..3b5da1de 100644 --- a/web/share/js/kvm/mouse.js +++ b/web/share/js/kvm/mouse.js @@ -64,11 +64,7 @@ export function Mouse() { self.setSocket = function(ws) { __ws = ws; - if (ws) { - $("stream-box").classList.add("stream-box-mouse-enabled"); - } else { - $("stream-box").classList.remove("stream-box-mouse-enabled"); - } + $("stream-box").classList.toggle("stream-box-mouse-enabled", ws); __updateLeds(); }; |