-
Notifications
You must be signed in to change notification settings - Fork 2
/
async-context.html
41 lines (40 loc) · 1.66 KB
/
async-context.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
<!DOCTYPE html>
<html>
<head>
<title>Async Context Visualization</title>
<link rel="stylesheet" href="../../JSAV/css/JSAV.css" type="text/css" media="screen" title="no title" charset="utf-8" />
<link rel="stylesheet" href="../../lib/slideShow/asyncContext.css" type="text/css" media="screen" title="no title" charset="utf-8" />
</head>
<body>
<h1>Async Context Visualization - promise example from markdown</h1>
<div class='container'>
<div id="codeContainer" class="codeContainer">
<div id="codeContainerInner" class="innerCodeContainer">
<H3>Code</H3>
<div id="codeAnchor"></div>
</div>
<div id="eventContainerInner" class="innerCodeContainer">
<H3>Events</H3>
<div id="eventAnchor"></div>
</div>
</div>
<div id="graphContainer" class="graphContainer">
<div id="av">
<div class="jsavcontrols"></div>
<span class="jsavcounter"></span>
<p class="jsavoutput jsavline"></p>
</div>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/jquery-ui.min.js"></script>
<script src="../../JSAV/lib/jquery.transit.js"></script>
<script src="../../JSAV/lib/raphael.js"></script>
<script src="../../JSAV/lib/dagre.min.js"></script>
<script src="../../JSAV/build/JSAV.js"></script>
<!-- update this lineto plug in the event stream & code sample to visualize -->
<script src="./eventsIdeal.js"></script>
<!-- -->
<script src="../../lib/slideShow/createGraph.js"></script>
</body>
</html>