-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhtml
40 lines (32 loc) · 1.06 KB
/
html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
<link rel="stylesheet" type="text/css" href="css/style.css">
<link href="css/bootstrap.min.css" rel="stylesheet">
<script src="js/jquery.min.js"></script>
<script src="js/jquery-3.3.1.min.js"></script>
<script src="js/jquery-ui.min.js"></script>
<script type="text/javascript" src="js/defaultscript.js"></script>
<script type="text/javascript" src="js/quoteSubscription.js"></script>
$(document).ready(function () {
$('#closeTileButton').on('click', function (e) {
$('#first').remove();
});
});
</head>
<body>
<div class="menu-bar">
<div id="addView" class="button new-tile-button tooltip">Add +
<span class="tooltiptext">Add an additional FX Spot stream view</span>
</div>
</div>
<p>
<button onclick="openSocket()">Open</button>
<button onclick="closeSocket()">Close</button>
</p>
<p>
<input id="message" type="text" size="40">
<button onclick="sendText()">Send Text</button>
</p>
<ul id="messages">
</ul>