mirror of https://github.com/embarklabs/embark.git
7 lines
183 B
JavaScript
7 lines
183 B
JavaScript
|
const ws = new WebSocket(`ws://${location.hostname}:${location.port}`);
|
||
|
ws.addEventListener('message', (evt) => {
|
||
|
if(evt.data === 'outputDone') {
|
||
|
location.reload(true);
|
||
|
}
|
||
|
});
|