Rocket/examples/sse/static/index.html
Sergio Benitez 3970783d06 Fix SSE example, clean-up SSE related code.
Also updates UI tests for latest nightly.
2020-10-29 23:37:43 -07:00

23 lines
551 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Rocket SSE Example</title>
</head>
<body>
<h1>Streaming...</h1>
<div id="spong">nothing yet</div>
</body>
<script charset="utf-8">
status_node = document.getElementById('spong');
status_node.innerHTML = 'loaded! nothing yet.';
es = new EventSource("updates");
es.onmessage = function(event) {
console.log(event);
status_node.innerHTML = event.data;
};
</script>
</html>