mach/tools/wasmserve/www/wasmserve.js
2022-09-14 12:32:03 -07:00

11 lines
219 B
JavaScript

let evtSource = new EventSource("/notify");
function setup() {
evtSource.addEventListener("message", function (e) {
if (e.data === "reload") {
window.location.reload();
}
});
}
export default setup;