forked from philipp/eddefyjs
-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
executable file
·44 lines (37 loc) · 1.39 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<!doctype html>
<html>
<head>
<title>Business Path - Eddefy</title>
<meta http-equiv="content-type" content="text/html;charset=utf-8" />
<link rel="stylesheet" href="css/dragdrop.css" />
<link rel="stylesheet" href="css/main.css" />
</head>
<body>
<script id="summary-template" type="text/x-handlebars-template">
</script>
<script id="detail-template" type="text/x-handlebars-template">
<h1>{{title}}</h1>
</script>
<div id="pathChoices">
<select id="pathSelector" class="pathSelector" title="Select a Path"></select>
</div>
<div id="main">
<div id="detail">DETAILS!!!!!</div>
</div>
<div id="sidebar">
sidebar!
</div>
<script type='text/javascript' src='http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js'></script>
<script type='text/javascript' src='http://ajax.googleapis.com/ajax/libs/jqueryui/1.10.3/jquery-ui.min.js'></script>
<script type='text/javascript' src='js/jquery.jsPlumb-1.4.1-all-min.js'></script>
<script src="js/h5utils.js"></script>
<script src="js/creation.js"></script>
<script src="js/insertion.js"></script>
<script src="js/jquery.watch.js"></script>
<!-- project-specific code -->
<script src="data/KNOWN_PATHS.js"></script>
<script src="js/pathcode.js"></script>
<script src="js/eddefy.js"></script>
<script src="js/dragdrop1.js"></script>
</body>
</html>