-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (29 loc) · 799 Bytes
/
Copy pathindex.html
File metadata and controls
31 lines (29 loc) · 799 Bytes
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
<!DOCTYPE html>
<html data-ng-app="abd">
<head>
<title>Angular big data</title>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge, chrome=1" />
<meta name="viewport" content="initial-scale=1, maximum-scale=1" />
<style> .ng-hide { display: none !important; }
td {
border: 1px solid #dadada;
}
</style>
</head>
<body data-ng-controller="bigdata as vm">
<table>
<thead>
</thead>
<tbody>
<tr data-ng-repeat="row in data.rows" on-last-repeat>
<td data-ng-repeat="cell in row.values">
{{cell.value}}
</td>
</tr>
</tbody>
</table>
<script src="/bower_components/angular/angular.js"></script>
<script src="app.js"></script>
</body>
</html>