forked from colorfest/angularjs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
56 lines (40 loc) · 1.17 KB
/
index.html
File metadata and controls
56 lines (40 loc) · 1.17 KB
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
50
51
52
53
54
55
56
<!doctype html>
<html lang="en">
<head>
<title>AccioCode AngularJS Tutorial - Directives</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-COMPATIBLE" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, user-scalable=no">
<script src="angularjstutorial-deps.js"></script>
<script src="angularjstutorial.js"></script>
<link rel="stylesheet" href="angularjstutorial.css">
</head>
<body>
<div class="mainContainer" data-ng-app="MyApp">
<div restrictions>Attribute Restriction</div>
<elementrest>Element Restriction</elementrest>
<div class="classrest">Class Restriction</div>
<!-- directive:commentsrest -->
<div></div>
<walterwhite message="I am Heisenberg" class="btn btn-default">
</walterwhite>
<br>
<div interactive-btn class="btn btn-default">
Button
</div>
<br>
<theshield reigns rollins ambrose class="btn btn-default">
Access The Shield
</theshield>
<theshield reigns class="btn btn-default">
Click Reigns
</theshield>
<theshield rollins class="btn btn-default">
Click Rollins
</theshield>
<theshield ambrose class="btn btn-default">
Click Ambrose
</theshield>
</div>
</body>
</html>