Sha256: 1f3a84ae3c5fbcbcd5c63fc7d158c0a9f887b82e0e8ab886c08e2d8ebc1f7259

Contents?: true

Size: 741 Bytes

Versions: 26

Compression:

Stored size: 741 Bytes

Contents

<!DOCTYPE html>
<html>
<head>
<style>
.col {
	float:left;
	width:50%;
	left:50%;
}
</style>
</head>

<body>
<div class=col>
  <h2>EventSource</h2>
  <ul id=es-messages>
  </ul>
</div>

<div class=col>
  <h2>EventSourcePolyfill</h2>
  <ul id=es-polyfill-messages>
  </ul>
</div>

<script src=/eventsource-polyfill.js></script>

<script>
function subscribe(es, ul) {
  es.addEventListener('server-time', function (e) {
    var li = document.createElement("LI");
    li.appendChild(document.createTextNode(e.data));
    ul.appendChild(li);
  });
}

subscribe(new EventSource('/sse'),         document.getElementById('es-messages'));
subscribe(new EventSourcePolyfill('/sse'), document.getElementById('es-polyfill-messages'));
</script>
</body>

Version data entries

26 entries across 25 versions & 8 rubygems

Version Path
optimacms-0.1.61 spec/dummy/node_modules/eventsource/example/index.html
disco_app-0.18.0 test/dummy/node_modules/eventsource/example/index.html
disco_app-0.18.2 test/dummy/node_modules/eventsource/example/index.html
disco_app-0.16.1 test/dummy/node_modules/eventsource/example/index.html
disco_app-0.15.2 test/dummy/node_modules/eventsource/example/index.html
disco_app-0.18.4 test/dummy/node_modules/eventsource/example/index.html
disco_app-0.18.1 test/dummy/node_modules/eventsource/example/index.html
disco_app-0.12.7.pre.puma.pre.3 test/dummy/node_modules/eventsource/example/index.html
disco_app-0.14.0 test/dummy/node_modules/eventsource/example/index.html
disco_app-0.13.6.pre.puma.pre.3 test/dummy/node_modules/eventsource/example/index.html
tang-0.2.1 spec/tang_app/node_modules/eventsource/example/index.html
groonga-client-model-6.0.0 test/apps/rails6.0.3.5/node_modules/eventsource/example/index.html
groonga-client-model-6.0.0 test/apps/rails6.1.3/node_modules/eventsource/example/index.html
ruby2js-4.0.4 lib/tasks/testrails/node_modules/eventsource/example/index.html
ruby2js-4.0.3 lib/tasks/testrails/node_modules/eventsource/example/index.html
tang-0.2.0 spec/tang_app/node_modules/eventsource/example/index.html
tang-0.1.0 spec/tang_app/node_modules/eventsource/example/index.html
tang-0.0.9 spec/tang_app/node_modules/eventsource/example/index.html
enju_library-0.3.8 spec/dummy/node_modules/eventsource/example/index.html
jester-data-8.0.0 node_modules/eventsource/example/index.html