-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathdev.html
53 lines (42 loc) · 1.43 KB
/
dev.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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-type" content="text/html;charset=UTF-8">
<link rel="stylesheet" href="../css/demo.css"/>
<link rel="stylesheet" href="../css/graph.css"/>
<link rel="stylesheet" href="../css/list.css"/>
<link href='http://fonts.googleapis.com/css?family=Lato:400,700' rel='stylesheet' type='text/css'>
</head>
<body>
<div id="main-display-view">
<div id="graph-view-wrapper">
</div>
</div>
<!-- Underscore Templates -->
<script type="text/template" id="concept-list-template">
<div id="concept-list-show-button" class="small-vp-button">
Concept List
</div>
<div id="concept-title-header">
<h1>
Concept List
</h1>
<div id="explore-learn-tools">
<div id="concept-list-search">
<input type="text" id="concept-list-search-input" placeholder="enter the name of a concept to find it">
<input type="button" value="Clear" id="cancel-search-input" style="top: 39px;">
</div>
<div id="concept-list-hide-button" style="font-size: 1.4em; padding: 0 0.1em 0.2em 0.1em;">
«
</div>
</div>
</div>
<div id="concept-list-wrapper">
<ol id="concept-list">
</ol>
</div>
</script>
<!-- js -->
<script data-main="demojs/dev.js" src="../js/lib/require-min.js"></script>
</body>
</html>