Cleanup, formatting, comments, added onclick functions

This commit is contained in:
Julian Appel 2024-04-21 14:24:53 +02:00
parent 093c8c6e24
commit a4d905d728
4 changed files with 38 additions and 42 deletions

View file

@ -0,0 +1,11 @@
function timerStart()
{
fetch("/admin/timerStart", {
method: "POST",
headers: {'Content-Type': 'text/html'},
body: ""
}).then(res => {
console.log(res);
})
}