forked from gabrielflorit/water
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathwater.html
More file actions
39 lines (39 loc) · 1.41 KB
/
water.html
File metadata and controls
39 lines (39 loc) · 1.41 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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta charset='utf-8' />
<title>D3 + Coffeescript Visualization Sketchpad</title>
<link rel='stylesheet' type='text/css' href='http://yui.yahooapis.com/2.9.0/build/reset/reset-min.css' />
<link rel='stylesheet' type='text/css' href='css/water.css' />
</head>
<body>
<div id='page'>
<div id='display'>
<svg></svg>
</div>
<div id='editor'>
</div>
<div>
<a class='increase font-control' href='#'>+</a>
<a class='decrease font-control' href='#'>-</a>
</div>
<div id='aboutAndAttribution'>
<div id='attribution'>
<a href='https://github.com/lgrammel/water'>source code on github</a>
<a href='https://github.com/gabrielflorit/water'>based on Gabriel Florit's Water</a>
</div>
</div>
</div>
<script src='http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js'></script>
<script src='js/jquery.hotkeys.js'></script>
<script src='js/coffee-script.js'></script>
<script src='js/d3.v2.min.js'></script>
<script src='js/ace/ace.js'></script>
<script src='js/ace/theme-twilight.js'></script>
<script src='js/ace/mode-coffee.js'></script>
<script>
$.getScript('js/water.js');
</script>
</body>
</html>