summaryrefslogtreecommitdiff
path: root/deps/wse/priv/wse_demo.html
blob: 610d03ff08a0c87adac136cc4ff42e6d55a432a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<html><head>
<title>wse demo page</title>
<script src='ej.js'></script>
<script src='wse.js'></script>
<script>
  window.onload = function() {
    if (Wse.open("ws://"+(location.hostname||"localhost")+":1234/websession"))
      Wse.start('wse_demo', 'run', ["myid"]);
  };
</script></head>
<body>
  <div id="myid"></div>
</body></html>