-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
41 lines (26 loc) · 1.48 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 lang="en-nz">
<head>
<meta charset="utf-8">
<title>Angular jstree Demo</title>
<link href="lib/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="css/styles.css" rel="stylesheet">
</head>
<body>
<div class="container" ng-app="treeDemo">
<div class="jumbotron">
<h1>Angular jstree Demo</h1>
<p>This is a demo of a <a href="http://www.jstree.com/">jstree</a> tree component wrapped in an <a href="http://angularjs.org/">AngularJS</a> directive. The tree loads child nodes dynamically via AJAX from a simple API serving static JSON files.</p>
<p>This demo is based on the <a href="https://github.com/tompi/jstree-angular">jstree-angular</a> directive written by <a href="https://github.com/tompi">Thomas Haukland</a>.</p>
</div>
<div ng-view></div>
</div>
<script src="lib/jquery.min.js"></script>
<script src="lib/jstree/jquery.jstree.js"></script>
<script src="lib/angular/angular.min.js"></script>
<script src="lib/angular/angular-route.min.js"></script>
<script src="js/app.js"></script>
<script src="js/directives.js"></script>
<script src="js/controllers.js"></script>
</body>
</html>