()
| 258 | ajax.send(formdata); |
| 259 | } |
| 260 | function logoutButton() { |
| 261 | httpRequest("GET", "/logout"); |
| 262 | setTimeout(function () { window.open("/logged-out", "_self"); }, 500); |
| 263 | } |
| 264 | function rebootButton() { |
| 265 | if (confirm("Confirm Restart?!")) { |
| 266 | httpRequest("GET", "/reboot"); |
nothing calls this directly
no test coverage detected