-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathtutorials.html
More file actions
150 lines (147 loc) · 4.87 KB
/
tutorials.html
File metadata and controls
150 lines (147 loc) · 4.87 KB
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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang="en"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8" lang="en"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9" lang="en"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en"> <!--<![endif]-->
<head>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<script src='http://use.typekit.com/aow5drr.js' type='text/javascript'></script>
<script type='text/javascript'>
try{ Typekit.load(); } catch(e) {}
</script>
<meta charset='utf-8' />
<meta content='IE=edge,chrome=1' http-equiv='X-UA-Compatible' />
<meta content='The Miso Project' name='description' />
<meta content='The Miso Project' name='name' />
<meta content='width=device-width' name='viewport' />
<title>The Miso Project :: Storyboard :: Tutorials</title>
<link href='/stylesheets/screen.css' rel='stylesheet' />
<link href='/stylesheets/codemirror.css' rel='stylesheet' />
</head>
<body>
<nav>
<span class='miso'>
<a href='/'>
← Miso Home
</a>
</span>
<span>
<a href='/storyboard'>
Home
</a>
</span>
<span>
<a href='/storyboard/tutorials.html'>
Tutorials
</a>
</span>
<span>
<a href='/storyboard/api.html'>
API Doc
</a>
</span>
<span>
<a href='http://www.github.com/misoproject/storyboard'>
Code (Github)
</a>
</span>
</nav>
<article class='storyboard tutorials'>
<section>
<div class='tutorial'>
<a href='/storyboard/tutorials/quickstart'>
<h2>
Quick Start
</h2>
<p>
Start here to get your environment ready to go and create
your first storyboard!
</p>
</a>
</div>
<div class='tutorial'>
<a href='/storyboard/tutorials/async'>
<h2>
Asynchronous Scenes
</h2>
<p>
Learn how to work with asynchronous scenes in your storyboard.
</p>
</a>
</div>
<div class='tutorial'>
<a href='/storyboard/tutorials/remotedata'>
<h2>
Working with remote data
</h2>
<p>
How to use Storyboard to handle data loading with
Miso.Dataset.
</p>
</a>
</div>
<div class='tutorial'>
<a href='/storyboard/tutorials/events'>
<h2>
Storyboard events
</h2>
<p>
Storyboard transitions broadcast lots of events you can bind to.
</p>
</a>
</div>
</section>
</article>
<footer>
<div class='container'>
<section>
<h2>
A joint project between
</h2>
<div class='content'>
<a href='http://www.guardian.co.uk/profile/guardian-interactive-department'>
<img alt="Guardian" src="/images/guardian.png"/>
</a>
<a href='http://www.bocoup.com'>
<img alt="Bocoup horizontal 614" src="/images/bocoup-horizontal-614.gif"/>
</a>
</div>
</section>
<section>
<h2>
Supported by
</h2>
<div class='content'>
<a href='http://www.guardian.co.uk/development'>
<img alt="Global dev" src="/images/global-dev.png"/>
</a>
<a href='http://www.gatesfoundation.org/'>
<img alt="Gates" src="/images/gates.png"/>
</a>
</div>
</section>
</div>
</footer>
<script src='/js/jquery.min.js'></script>
<script src='/js/nav.js'></script>
<script src='/js/miso.storyboard.deps.js'></script>
<script src='/js/bootstrap/transition.js'></script>
<script src='/js/bootstrap/collapse.js'></script>
<script charset='utf-8' src='/js/ace-min/ace.js' type='text/javascript'></script>
<script src='/js/acify.js'></script>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-30531498-1']);
_gaq.push(['_setDomainName', 'misoproject.com']);
_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>