summaryrefslogtreecommitdiff
path: root/print/resources/pingworker.js
blob: ac4e81a9dd39c2bf5b2b28910c939db4e726948e (plain)
1
2
3
4
5
6
7
8
9
function ping() {
    fetch("/ping")
        .then(() => setTimeout(ping, 1000))
        .catch((e) => {
            console.error(e);
            postMessage("error");
        })
}
setTimeout(ping, 1000);