-
Notifications
You must be signed in to change notification settings - Fork 4
/
transactions.html
69 lines (57 loc) · 2.25 KB
/
transactions.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
<!DOCTYPE html>
<html>
<head>
<title>Open Bank transactions</title>
<link rel="stylesheet" media="all" type="text/css" href="./js/transactions/style.css" />
<link rel="stylesheet" media="all" type="text/css" href="http://code.jquery.com/ui/1.9.1/themes/base/jquery-ui.css" />
<script src="http://code.jquery.com/jquery-1.8.2.js"></script>
<script src="http://code.jquery.com/ui/1.9.1/jquery-ui.js"></script>
<script src="./js/philogl/PhiloGL.js"></script>
<script src="./js/transactions/classes.js"></script>
<script src="./js/transactions/index.js"></script>
<script src="./js/transactions/mustache.js"></script>
</head>
<body>
<div id="log-panel" style="display:none;">
<span id="log-message"></span>
</div>
<div id="fallback" class="fallback"></div>
<div id="container">
<!-- <div id="title">
<h1>Flow of Money</h1>
<div class="description">Visualize Open Bank Transactions Flow</div>
</div> -->
<div class="canvas-container">
<div id="canvas-wrapper">
<canvas id="map-canvas" width="1024" height="1024"></canvas>
</div>
<div id="list-wrapper" class="list-wrapper" style="display:none;">
<input type="text" id="search" placeholder="Search..." />
<ul id="selected-airlines">
</ul>
<div class="list-container">
<ul id="airline-list"></ul>
</div>
</div>
<div style="clear:both;"></div>
</div>
</div>
</div>
<div class="footer">
Authors: Daniel Gastón, Alberto Romeu and Jorge Sanz. Heavily based on the work of: <a href='http://twitter.com/gerbille/'>Luz Caballero</a> & <a href="http://philogb.github.com/">Nicolas Garcia
Belmonte</a>.
</div>
<div class="tooltip hide" id="tooltip" style="width:auto;"></div>
<div id="transaction"></div>
<script>
if (!PhiloGL.hasWebGL()) {
document.body.className = 'no-webgl';
document.getElementById('fallback').innerHTML = ''
+ '<div style="margin:10px;">'
+ 'Your browser (or hardware) does not support WebGL. Go <a href="http://get.webgl.org">here</a> to find more information.'
+ '</div>'
;
}
</script>
</body>
</html>