diff options
author | Devaev Maxim <[email protected]> | 2018-08-07 19:09:47 +0300 |
---|---|---|
committer | Devaev Maxim <[email protected]> | 2018-08-07 19:09:47 +0300 |
commit | a844e9d152b67e0f2aa344992f02397144394a6d (patch) | |
tree | d745599bece9eae126f636d2aba5f568f31714d8 /kvmd/web/js/atx.js | |
parent | 20f7e2cde675fe7c3bddbf62328ebe9a11d96e13 (diff) |
web linting
Diffstat (limited to 'kvmd/web/js/atx.js')
-rw-r--r-- | kvmd/web/js/atx.js | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/kvmd/web/js/atx.js b/kvmd/web/js/atx.js index 8cc9e90c..56b49e54 100644 --- a/kvmd/web/js/atx.js +++ b/kvmd/web/js/atx.js @@ -33,17 +33,17 @@ var atx = new function() { switch (el_button.id) { case "atx-power-button": - var button = "power"; - var confirm_msg = "Are you sure to click the power button?"; + button = "power"; + confirm_msg = "Are you sure to click the power button?"; break; case "atx-power-button-long": - var button = "power_long"; - var confirm_msg = "Are you sure to perform the long press of the power button?"; - var timeout = 15000; + button = "power_long"; + confirm_msg = "Are you sure to perform the long press of the power button?"; + timeout = 15000; break; case "atx-reset-button": - var button = "reset"; - var confirm_msg = "Are you sure to reboot the server?"; + button = "reset"; + confirm_msg = "Are you sure to reboot the server?"; break; } |