-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
49 lines (45 loc) · 2.34 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
43
44
45
46
47
48
49
<!doctype html>
<html ng-app="app">
<head>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.0/angular.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.0/angular-touch.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.0/angular-animate.js"></script>
<script src="https://ui-grid.info/docs/grunt-scripts/csv.js"></script>
<script src="https://ui-grid.info/docs/grunt-scripts/pdfmake.js"></script>
<script src="https://ui-grid.info/docs/grunt-scripts/vfs_fonts.js"></script>
<script src="https://ui-grid.info/release/ui-grid.js"></script>
<script src="https://use.fontawesome.com/63ed9a0161.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link rel="stylesheet" href="https://ui-grid.info/release/ui-grid.css" type="text/css">
<link rel="stylesheet" href="dist/ui-grid-custom.css" type="text/css">
</head>
<body>
<nav class="navbar navbar-default">
<div class="container-fluid">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#">UI Grid - Custom CSS</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav">
<li><a href="https://github.com/aurbano/ui-grid-css"><i class="fa fa-github"></i> Github</a></li>
</ul>
</div><!-- /.navbar-collapse -->
</div><!-- /.container-fluid -->
</nav>
<div ng-controller="MainCtrl">
<div class="container">
<h1>Simple example</h1>
<div id="grid1" ui-grid="gridConfig" class="grid"></div>
</div>
</div>
<script src="app.js"></script>
</body>
</html>