-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (40 loc) · 905 Bytes
/
index.html
File metadata and controls
43 lines (40 loc) · 905 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
32
33
34
35
36
37
38
39
40
41
42
43
<!DOCTYPE html>
<html ng-app="plunker">
<head>
<meta charset="utf-8" />
<link href="style.css" rel="stylesheet" />
<link href="table.css" rel="stylesheet" />
<script src="https://code.angularjs.org/1.4.9/angular.js"></script>
<script src="table_directive.js"></script>
<script src="app.js"></script>
</head>
<body ng-controller="MainCtrl">
<p>Hello {{name}}!</p>
<ng-include src="'table.tpl.html'"></ng-include>
<hr />
<table scrollable-table theaders="[{width:'50px',data:'th1'},{width:'*',data:'th2'},{width:'50px',data:'th3'}]">
<!--tbody-->
<tr>
<td>1</td>
<td>2</td>
<td>3</td>
</tr>
<tr>
<td>en</td>
<td>to</td>
<td>tre</td>
</tr>
<tr>
<td>1</td>
<td>2</td>
<td>3</td>
</tr>
<tr>
<td>en</td>
<td>to</td>
<td>tre</td>
</tr>
<!--/tbody-->
</table>
</body>
</html>