livestream/static/js/loading.js

10 lines
231 B
JavaScript
Raw Normal View History

2023-06-13 00:07:14 +03:00
async function IsLivestreamReady() {
let resp = await fetch("/api/is_livestream_ready");
return await resp.json()
}
while (!await IsLivestreamReady()) {
await new Promise(r => setTimeout(r, 100));
}
location.reload();