forked from aaronfrost/es6-femasters-slides
-
Notifications
You must be signed in to change notification settings - Fork 0
/
promises.html
124 lines (108 loc) · 4.37 KB
/
promises.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<!--
Google IO 2012/2013 HTML5 Slide Template
Authors: Eric Bidelman <ebidel@gmail.com>
Luke Mahé <lukem@google.com>
URL: https://code.google.com/p/io-2012-slides
-->
<!DOCTYPE html>
<html>
<head>
<title>Promises</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<!--<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0">-->
<!--<meta name="viewport" content="width=device-width, initial-scale=1.0">-->
<!--This one seems to work all the time, but really small on ipad-->
<!--<meta name="viewport" content="initial-scale=0.4">-->
<meta name="apple-mobile-web-app-capable" content="yes">
<link rel="stylesheet" media="all" href="theme/css/default.css">
<link rel="stylesheet" media="only screen and (max-device-width: 480px)" href="theme/css/phone.css">
<base target="_blank"> <!-- This amazingness opens all links in a new tab. -->
<script data-main="js/slides" src="js/require-1.0.8.min.js"></script>
</head>
<body style="opacity: 0">
<slides class="layout-widescreen">
<slide class="title-slide segue nobackground">
<aside class="gdbar"><img src="images/es6.png"></aside>
<!-- The content of this hgroup is replaced programmatically through the slide_config.json. -->
<hgroup class="auto-fadein">
<h1 data-config-title style="display: none;"><!-- populated from slide_config.json --></h1>
<h2 data-config-subtitle style="display: none;"><!-- populated from slide_config.json --></h2>
<p data-config-presenter style="display: none;"><!-- populated from slide_config.json --></p>
<h1>Promises</h1>
<p data-config-presenter><!-- populated from slide_config.json --></p>
</hgroup>
</slide>
<slide>
<hgroup>
<h2>Promises</h2>
</hgroup>
<article>
<p>
<h4>Three new Collections</h4>
</p>
<ul>
<li>SET</li>
<li>MAP</li>
<li>WEAKMAP</li>
</ul>
<ul class="build fade">
<li><b>Set</b> is <span style="font-style: italic;">like</span> Array</li>
<li><b>Map</b> is <span style="font-style: italic;">like</span> Key-Value Object</li>
<li><b>WeakMap</b> is <span style="font-style: italic;">like</span> Map, but different</li>
<li>Let's talk about each one</li>
</ul>
</article>
</slide>
<!--<slide class="segue dark quote nobackground">-->
<!--<aside class="gdbar right bottom"><img src="images/es6.png"></aside>-->
<!--<article class="flexbox vleft auto-fadein">-->
<!--<q>-->
<!--SET-->
<!--</q>-->
<!--<!–<div class="author">–>-->
<!--<!–Doug Crockford<br>–>-->
<!--<!–Senior Architect of JS<br>–>-->
<!--<!–@Paypal–>-->
<!--<!–</div>–>-->
<!--</article>-->
<!--</slide>-->
<!-- -->
<slide class="segue dark quote nobackground">
<aside class="gdbar right bottom"><img src="images/es6.png"></aside>
<article class="flexbox vleft auto-fadein">
<h2>That's Collections</h2>
<h3>Questions???</h3>
<div class="author">
#ES6 #frontendmasters @js_dev
</div>
</article>
</slide>
<slide>
<hgroup>
<h2>TRY THIS</h2>
</hgroup>
<article>
<ul>
<li><b>Collections</b> in <a href="http://google.github.io/traceur-compiler/demo/repl.html#%2F%2F%20Options%3A%20--annotations%20--array-comprehension%20--async-functions%20--block-binding%20--exponentiation%20--generator-comprehension%20--symbols%20--types%0A%0A">Traceur Repl</a></li>
<li><b>Collections</b> in Firefox</li>
<li><b>Collections</b> in Chrome</li>
<li>Use class to extend Set, so that 'add' returns this so you can daisychain</li>
<li>Use class to extend Map, so that 'set' returns this so you can daisychain</li>
</ul>
</article>
</slide>
<slide class="backdrop"></slide>
</slides>
<script>
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-XXXXXXXX-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</body>
</html>