-
Notifications
You must be signed in to change notification settings - Fork 1
/
Index.html
29 lines (27 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
<!DOCTYPE html>
<html ng-app="app">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<title>DHTMLX Grantt Directive for Angularjs</title>
<link href="lib/css/bootstrap.css" rel="stylesheet" />
<link href="lib/css/font-awesome.min.css" rel="stylesheet" />
<link href="lib/dhtmlxgantt.css" rel="stylesheet" />
</head>
<body>
<div class="container-fluid" ng-controller="myCtrl">
<div class="row">
<div class="col-sm-12">
<div ng-grantt="granttConfig" action="action($data,$action)"></div>
</div>
</div>
</div>
<script src="app/extension.js"></script>
<script src="lib/jquery-2.1.4.min.js"></script>
<script src="lib/js/bootstrap.min.js"></script>
<script src="lib/angular.min.js"></script>
<script src="lib/dhtmlxgantt.js"></script>
<script src="app/app.js"></script>
<script src="app/controller.js"></script>
<script src="app/ngGantt.js"></script>
</body>
</html>