From 3ae6f3f881b4a116f962c919af8606ba32d905db Mon Sep 17 00:00:00 2001 From: Devaev Maxim Date: Fri, 25 Dec 2020 05:09:52 +0300 Subject: refactoring --- web/share/js/kvm/gpio.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'web/share/js/kvm/gpio.js') diff --git a/web/share/js/kvm/gpio.js b/web/share/js/kvm/gpio.js index f357236b..54aff0a6 100644 --- a/web/share/js/kvm/gpio.js +++ b/web/share/js/kvm/gpio.js @@ -48,7 +48,7 @@ export function Gpio() { for (let type of ["switch", "button"]) { let el = $(`gpio-${type}-${channel}`); if (el) { - wm.switchEnabled(el, state.outputs[channel].online && !state.outputs[channel].busy); + wm.setElementEnabled(el, state.outputs[channel].online && !state.outputs[channel].busy); } } let el = $(`gpio-switch-${channel}`); @@ -62,7 +62,7 @@ export function Gpio() { } for (let selector of [".gpio-switch", ".gpio-button"]) { for (let el of $$$(selector)) { - wm.switchEnabled(el, false); + wm.setElementEnabled(el, false); } } } -- cgit v1.2.3