diff options
author | Devaev Maxim <[email protected]> | 2018-07-16 10:25:17 +0300 |
---|---|---|
committer | Devaev Maxim <[email protected]> | 2018-07-16 10:25:17 +0300 |
commit | eda29498097b05afab38b7f8a586597b40563039 (patch) | |
tree | 7f4a50445683d763c18596f571fd784700c318e5 /kvmd/web/js | |
parent | bbb92e0a208acef8a700c7a3c62687473c77e210 (diff) |
improved css, animated led-msd-writing
Diffstat (limited to 'kvmd/web/js')
-rw-r--r-- | kvmd/web/js/atx.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kvmd/web/js/atx.js b/kvmd/web/js/atx.js index d0c8f3af..0779f584 100644 --- a/kvmd/web/js/atx.js +++ b/kvmd/web/js/atx.js @@ -1,7 +1,7 @@ var atx = new function() { this.setLedsState = function(leds) { $("atx-power-led").className = (leds.power ? "led-on" : "led-off"); - $("atx-hdd-led").className = (leds.hdd ? "led-busy" : "led-off"); + $("atx-hdd-led").className = (leds.hdd ? "led-hdd-busy" : "led-off"); }; this.clearLeds = function() { |