-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
49 lines (48 loc) · 1.62 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 xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
</head>
<body>
Here are my AngularJS samples
<div>
<table>
<tr>
<td>Link</td>
<td>Directives</td>
<td>Controllers</td>
<td>Filters</td>
<td>Description</td>
</tr>
<tr>
<td><a href="Sample1.html">Sample 1</a></td>
<td>data-ng-init</td>
<td></td>
<td></td>
<td>Loop through a collection</td>
</tr>
<tr>
<td><a href="Sample2.html">Sample 2</a></td>
<td>data-ng-init, ng-model, data-ng-repeat</td>
<td></td>
<td>filters, orderBy, uppercase, lowercase</td>
<td>Using ng-repeat, and filters like name, ordered by city, uppercase / lowercase etc.</td>
</tr>
<tr>
<td><a href="Sample3.html">Sample 3</a></td>
<td>ng-controller</td>
<td>controller</td>
<td></td>
<td>Display a message using a controller.</td>
</tr>
<tr>
<td><a href="Sample4.html">Sample 4</a></td>
<td>data-ng-init, ng-model, data-ng-repeat</td>
<td></td>
<td>filters, orderBy, uppercase, lowercase</td>
<td>Using ng-repeat, and filters like name, ordered by city, uppercase / lowercase etc.</td>
</tr>
</table>
</div>
</body>
</html>