summaryrefslogtreecommitdiff
path: root/deps/wse/priv/table_demo.html
blob: c0e93f6c00a660e3f3dc185e6564c2019abd9b63 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<html>
<head>
<title>Table 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_table_demo', 'run', ["t1"]);
   }
   else
     alert("WebSockets not supported");
};

</script>
</head>
<body>
<div id="t1" width=640 height=480></div>
</body>
</html>