forked from miguelpdl/WebRTC-codelab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
objectives.html
62 lines (48 loc) · 2.97 KB
/
objectives.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
61
62
<!DOCTYPE html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="Content-Style-Type" content="text/css" />
<title> Putting it all together: RTCPeerConnection + RTCDataChannel + signaling </title>
<link rel="stylesheet" href="./style/bootstrap.min.css" type="text/css">
<link rel="stylesheet" href="./style/clarity.css" type="text/css">
<link rel="stylesheet" href="./style/highlight.css">
<script src="./style/highlight.js"></script>
<script>hljs.initHighlightingOnLoad();</script>
</head>
<body>
<div class="container-fluid">
<!----------------------------------------------------------------------------------------->
<style> body { padding-top: 60px; } </style> <div class="navbar navbar-fixed-top">
<p id="title">Putting it all together: RTCPeerConnection + RTCDataChannel + signaling </p>
<div class="navbar-inner">
<ul class="nav">
<li class="active"><a href="objectives.html">Objectives</a></li>
</ul>
<p class="navbar-text pull-right"> <a href="http://miguelpdl.github.io/WebRTC-codelab/"> WebRTC Code Lab</a> </p>
</div>
</div>
<!----------------------------------------------------------------------------------------->
<h2 id="putting-it-all-together-rtcpeerconnection-rtcdatachannel-signaling">Putting it all together: RTCPeerConnection + RTCDataChannel + signaling</h2>
<p>This is a DIY step!</p>
<ol style="list-style-type: decimal">
<li><p>Take a look at the app you built in <a href="./../../../session04/lab/html/objectives.html">Session 04</a>.</p></li>
<li><p>Add the RTCDataChannel code to your <a href="./../../../session06/lab/html/objectives.html">Session 06</a> app to create a complete application.</p></li>
</ol>
<p><strong>In this session have a look at how the client app could use <a href="https://code.google.com/p/webrtc/source/browse/stable/samples/js/base/adapter.js">adapter.js</a>. This is a <a href="http://stackoverflow.com/questions/6599815/what-is-the-difference-between-a-shim-and-a-polyfill">JavaScript shim</a>, maintained by Google, that abstracts away browser differences and spec changes.</strong></p>
<h3 id="bonus-points">Bonus points</h3>
<ol style="list-style-type: decimal">
<li>The app hasn't had any work done on layout. Sort it out! Make sure your app works well on different devices.</li>
</ol>
<!----------------------------------------------------------------------------------------->
<div id="footer">
<p id="footertext">
Prepared by Miguel Ponce de Leon ([email protected]). Except where otherwise noted, this content is licensed under a
<a class="externalLink" href="http://creativecommons.org/licenses/by-nc/3.0/"
title="External link to http://creativecommons.org/licenses/by-nc/3.0/"
target="_blank">Creative Commons Attribution-NonCommercial 3.0 License
</a>
</p>
</div>
</div>
</body>
</html>