-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (39 loc) · 1.67 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>treejo.js</title>
<link href="/css/main.css" rel="stylesheet">
<link href="/css/treejo1.css" rel="stylesheet">
<link href="/css/treejo2.css" rel="stylesheet">
</head>
<body>
<div id="content">
<strong>treejo.js</strong> - a javascript component for viewing tree-structured data.
[<a href="https://github.com/davewood/treejo">github</a>|<a href="/test.html">unit-tests</a>]
<br/>
<br/>
<div id="mytreejo1">
<h3>mytreejo1</h3>
<div class="quicklinks">
<button class="quicklink-init my-quicklink" data-path="1.1">goto 1.1</button>
<button class="quicklink-init" data-path="1.2.1">goto 1.2.1</button>
<button class="quicklink-init" data-path="1.1.1.1.1.1.1">goto 1.1.1.1.1.1.1</button>
</div>
<div class="node-init" data-url="/api?node_id=1" data-title="root title" data-body="root body"></div>
</div>
<div id="mytreejo2">
<h3>mytreejo2</h3>
<div class="quicklinks">
<span class="quicklink-init my-quicklink" data-path="1.1">goto 1.1</span>
<span class="quicklink-init" data-path="1.2.1">goto 1.2.1</span>
<span class="quicklink-init" data-path="1.1.1.1.1.1.1">goto 1.1.1.1.1.1.1</span>
</div>
<div class="node-init" data-url="/api?node_id=1" data-title="root title" data-body="root body"></div>
</div>
</div>
<script src="/js/jquery.min.js"></script>
<script src="/js/treejo.js"></script>
<script src="/js/main.js"></script>
</body>
</html>