summaryrefslogtreecommitdiff
path: root/src/static/main.js
blob: 45b7f9b329b2d7a296113c51e4454ed689bbc3a8 (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").outerHTML = html.split("\n").slice(1).join("\n");
}

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