-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
28 lines (28 loc) · 1.09 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>JointJS Prototype</title>
<link rel="stylesheet" type="text/css" href="css/joint.css" />
<link rel="stylesheet" type="text/css" href="css/prototype.css" />
<link rel="stylesheet" type="text/css" href="css/prototype_flink.css" />
<script src="js/chrome.fix.js"></script>
<script src="js/jquery.min.js"></script>
<script src="js/lodash.min.js"></script>
<script src="js/backbone-min.js"></script>
<script src="js/joint.js"></script>
<script src="js/prototype.shapes.js"></script>
</head>
<body>
<button class="creator" data-type="input">DataInput</button>
<button class="creator" data-type="map">Map</button>
<button class="creator" data-type="filter">Filter</button>
<button class="creator" data-type="join">Join</button>
<button class="creator" data-type="reduce">Reduce</button>
<button class="creator" data-type="sink">Sink</button>
<button class="jsonout">GetJSON</button>
<button class="clear">Clear</button>
<div id="paper" class="paper"></div>
<script src="js/prototype.js"></script>
</body>
</html>