-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathindex.html
60 lines (47 loc) · 1.66 KB
/
index.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="referrer" content="no-referrer">
<title>RAWRTC Web Terminal Demo</title>
<!-- Favicon -->
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
<!-- xterm.js -->
<link rel="stylesheet" href="node_modules/xterm/dist/xterm.css" />
<!-- App -->
<link rel="stylesheet" href="app.css" />
</head>
<body>
<div id="wrapper">
<div id="status-bar" class="red"></div>
<div id="navigation">
<div id="l-connection" class="active">
<b>Connection</b>
</div>
<div id="l-add">+</div>
</div>
<div id="content">
<section id="connection" class="show">
<div id="paste-here" contenteditable="true">
Paste a WebSocket URI or the remote parameters here.
</div>
<span>Local Parameters</span>
<pre class="parameters" id="local-parameters"></pre>
<span>Remote Parameters</span>
<pre class="parameters" id="remote-parameters"></pre>
</section>
</div>
</div>
<!-- AdapterJS -->
<script src="node_modules/webrtc-adapter/out/adapter.js"></script>
<!-- xterm.js -->
<script src="node_modules/xterm/dist/xterm.js"></script>
<script src="node_modules/xterm/dist/addons/fit/fit.js"></script>
<!-- WebRTC-to-RAWRTC shim -->
<script src="sdp.js"></script>
<script src="webrtc-rawrtc.js"></script>
<!-- App -->
<script src="app.js"></script>
</body>
</html>