-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
executable file
·45 lines (41 loc) · 1.5 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
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<title>Examples from "Promises, Promises: Unlocking the Power of jQuery's Deferreds" at jQuery San Diego, 2014</title>
<link href='http://fonts.googleapis.com/css?family=Duru+Sans|Montserrat+Alternates' rel='stylesheet' type='text/css'>
<style type="text/css" title="text/css">
body {font-family: 'Duru Sans', verdana, tahoma, arial, sans-serif; font-size: 14px;}
#mainBox {
text-align:left;
width: 80%;
padding:6px;
border:4px dotted #ffa500;
background: white;
-moz-border-radius:10px; -webkit-border-radius:10px; border-radius:10px;
}
h1 { font-family: 'Montserrat Alternates', verdana, tahoma, arial, sans-serif; }
li {
padding-bottom: 8px;
}
</style>
</head>
<body>
<p> </p>
<div align="center">
<div id="mainBox">
<h1 style="color:black;">Examples from "Promises, Promises:<br/>Unlocking the Power of jQuery's Deferreds"</h1>
<h3></h3>
<ol>
<li><a href="6-wait.html">Wait</a></li>
<li><a href="7-whenExample.html">$.when()</a></li>
<li><a href="8-thenExample.html">$.then()</a></li>
<li><a href="10-thenExampleCleanest.html">A Cleaner $.then()</a></li>
<li><a href="11-parallelAnim.html">Parallel Animation</a></li>
<li><a href="13-chainedAnimCleanest.html">Serial Animation</a></li>
<li><a href="14-displayAfterLoad.html">Display After Load</a></li>
<li><a href="15-progressMeterUsingProgress.html">Progress Meters Using $.progress()</a></li>
</ol>
</div>
</div>
</body>
</html>