summaryrefslogtreecommitdiff
path: root/deps/wse/priv/frame1.html
blob: 56c09c1ef11ae9cb58a17610b7969034cc1e5e91 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<html>
<head>
<title>Frame</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.id = 'w1';
      Wse.start('wse_frame_demo', 'run', ["i1"]);
   }
}
</script>
</head>
<body>
<h2>Frame1</h2>
<div id="i1" width=620 height=170></div>
</body>
</html>