summaryrefslogtreecommitdiff
path: root/deps/wse/priv/frame2.html
blob: fdece19bba080295493b2a7bcc2927e3604b40c1 (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")+":1235/websession")) {
      Wse.id = 'w2';
      Wse.start('wse_frame_demo', 'run', ["i2"]);
   }
}
</script>
</head>
<body>
<h2>Frame2</h2>
<div id="i2" width=620 height=170></div>
</body>
</html>