gosora/public/register.js

14 lines
257 B
JavaScript
Raw Normal View History

(() => {
addInitHook("end_init", () => {
fetch("/api/watches/")
.then(resp => {
if(resp.status!==200) {
console.log("err");
console.log("resp",resp);
return;
}
resp.text().then(d => eval(d));
})
.catch(e => console.log("e",e));
});
2020-03-09 10:37:41 +00:00
})()