forked from webrtcHacks/sdp-anatomy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
31 lines (29 loc) · 982 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Anatomy of a SDP</title>
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script>
<link rel="stylesheet" href="include/sdpDisplay.css">
<script type="text/javascript" src="include/sdpDisplay.js"></script>
</head>
<body>
<div class="row">
<div class="col-sm-12">
<h1>Anatomy of a WebRTC SDP</h1>
<p>See the source post by Antón Román for more details.</p>
</div>
</div>
<div class="row">
<div class="col-sm-8">
<div id="lines" class="well"></div>
</div>
<div class="col-sm-4">
<div id="description">
Click/Hover your cursor at a code/line to view its description.
</div>
</div>
</div>
</body>
</html>