()
| 262 | setTimeout(function () { window.open("/logged-out", "_self"); }, 500); |
| 263 | } |
| 264 | function rebootButton() { |
| 265 | if (confirm("Confirm Restart?!")) { |
| 266 | httpRequest("GET", "/reboot"); |
| 267 | } |
| 268 | } |
| 269 | function systemInfo() { |
| 270 | httpRequest("GET", "/systeminfo", { |
| 271 | onload: (xhr) => { |
nothing calls this directly
no test coverage detected