summaryrefslogtreecommitdiff
path: root/src/static/main.js
blob: 86cda7e45ef8beb5ce01b2a0f839afeff012b7c7 (plain)
1
2
3
4
5
6
7
8
9
async function update() {
  const html = await (await fetch("/update")).text();
  document.querySelector("#top").innerHTML = html.split("\n").slice(0, 1)[0];
  document.querySelector("#program").innerHTML = html.split("\n").slice(1).join("\n");
}

setInterval(() => {
  update()
}, 5000);