github.com/Azareal/Gosora@v0.0.0-20210729070923-553e66b59003/public/register.js (about)

     1  (() => {
     2  	addInitHook("end_init", () => {
     3  	fetch("/api/watches/")
     4  	.then(resp => {
     5  		if(resp.status!==200) {
     6  			log("err");
     7  			log("resp",resp);
     8  			return;
     9  		}
    10  		resp.text().then(d => eval(d));
    11  	})
    12  	.catch(e => log("e",e));
    13  	});
    14  })()