-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
44 lines (41 loc) · 1.03 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
<!Doctype HTML>
<html ng-app="sampleApp">
<head>
<title>enl.utils - Angular Utilities module</title>
<style>
<!--
body {
font: normal 16px/1.2 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
article {
margin: 20px auto;
max-width: 960px;
}
h1 {
font-size: 48px;
text-align: center;
}
-->
</style>
</head>
<body>
<div ng-view>
<article ng-controller="MainCtrl as main">
<h1>enl.utils</h1>
<h2>repeat-complete [directive]</h2>
<p>Watch the console.</p>
<ul>
<li ng-repeat="item in main.items" repeat-complete event="list-repeated">{{::item}}</li>
</ul>
</article>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular.min.js"></script>
<script src="enl.utils.module.js"></script>
<script src="resize.js"></script>
<script src="ngMask.js"></script>
<script src="mediaCheck.js"></script>
<script src="repeatComplete.js"></script>
<script src="trustAsHTML.js"></script>
<script src="sampleApp.js"></script>
</body>
</html>