-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdemo.html
26 lines (23 loc) · 1.11 KB
/
demo.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
<!DOCTYPE html>
<html>
<head>
<title>Demo</title>
<link rel="stylesheet" href="bower_components/angular-material/angular-material.min.css">
<link rel="stylesheet" href="bower_components/bootstrap/dist/css/bootstrap.css" />
<link rel="stylesheet" href="bower_components/jstree/dist/themes/default/style.min.css" />
</head>
<body ng-app="demo" ng-controller="demoController">
<div style="width: 300px">
<selection-tree ng-model="options.value" data="data"></selection-tree>
</div>
<script src="bower_components/jquery/dist/jquery.js"></script>
<script src="bower_components/angular/angular.js"></script>
<script src="bower_components/angular-material/angular-material.js"></script>
<script src="bower_components/angular-animate/angular-animate.js"></script>
<script src="bower_components/angular-aria/angular-aria.js"></script>
<script src="bower_components/angular-messages/angular-messages.js"></script>
<script src="bower_components/jstree/dist/jstree.js"></script>
<script src="dist/selectionTree.js"></script>
<script src="demo.js"></script>
</body>
</html>