11 lines
202 B
JavaScript
11 lines
202 B
JavaScript
|
|
function timerStart()
|
|
{
|
|
fetch("/admin/timerStart", {
|
|
method: "POST",
|
|
headers: {'Content-Type': 'text/html'},
|
|
body: ""
|
|
}).then(res => {
|
|
console.log(res);
|
|
})
|
|
} |