repro-run/gitea-ci/index.html

13 lines
338 B
HTML
Raw Normal View History

2023-01-23 00:58:44 +00:00
<!DOCTYPE html>
<meta charset="utf-8" />
<pre></pre>
<script>
const el = document.querySelector("pre");
const id = location.hash.slice(1);
const ws = new WebSocket("ws://localhost:8080/logs/socket/" + id);
window.ws = ws;
ws.addEventListener("message", async (event) => {
el.append(await event.data.text());
});
</script>