Moved sse.html to proxy_web_root/index.html

This commit is contained in:
Daniel O'Connell 2014-05-13 14:51:16 +01:00
parent 0e640ae885
commit 1db51eb788
3 changed files with 38 additions and 21 deletions

View File

@ -0,0 +1,9 @@
<html>
<head>
<title>App1 Index</title>
</head>
<body>
<h1>This is App1 index page</h1>
<p>Image below is </p>
</body>
</html>

View File

@ -0,0 +1,29 @@
<html>
<head>
<title>example.com index</title>
<script type="text/javascript">
window.onload = function() {
var es = new EventSource("/api/sse");
var div = document.getElementById('events');
es.onmessage = function(ev) {
var el = document.createElement('div');
el.innerHTML = 'sse message: ' + ev.data;
div.appendChild(el);
// Keep only last 5 messages in the list
while (div.childNodes.length > 5) div.removeChild(div.firstChild);
};
};
</script>
</head>
<body>
<h1>This is an example.com index page.</h1>
<ul>
<li><a href="app1">App1</a> - App1 root</li>
<li><a href="app2">App2</a> - App2 root</li>
</ul>
<h2>SSE pushes, done by separate threads at random times:</h2>
<div id="events"></div>
</body>
</html>

View File

@ -1,21 +0,0 @@
<html>
<head>
<script type="text/javascript">
window.onload = function() {
var es = new EventSource("/api/sse");
var div = document.getElementById('events');
es.onmessage = function(ev) {
var el = document.createElement('div');
el.innerHTML = 'sse message: ' + ev.data;
div.appendChild(el);
// Keep only last 5 messages in the list
while (div.childNodes.length > 5) div.removeChild(div.firstChild);
};
};
</script>
</head>
<body>
<h1>SSE pushes, done by separate threads at random times:</h1>
<div id="events"></div>
</body>
</html>