-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
41 lines (39 loc) · 1.02 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
<!DOCTYPE html>
<html>
<head>
<title>Seemple treeview example</title>
<meta charset="UTF-8">
<link rel="stylesheet" href="https://cdn.rawgit.com/finom/vanillatree/master/vanillatree.css">
<style>
button {
margin: 5px 20px;
}
.remove::after {
content: '✕';
margin-left: 5px;
cursor: pointer;
}
</style>
</head>
<body>
<div class="wrapper">
<ul class="list vtree"></ul>
<button class="add">Add</button>
</div>
<script id="item-template" type="text/html">
<li class="vtree-leaf closed">
<span class="expand vtree-toggle"></span>
<a class="label vtree-leaf-label" contenteditable></a>
<span class="remove"></span>
<div class="wrapper">
<button class="add">Add Subtree</button>
<ul class="list vtree-subtree"></ul>
</div>
</li>
</script>
<script src="https://finom.github.io/seemple/seemple.js"></script>
<script src="js/tree-leaf.class.js"></script>
<script src="js/tree.class.js"></script>
<script src="js/app.js"></script>
</body>
</html>