-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (30 loc) · 1.57 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<script src="./node_modules/angular/angular.js"></script>
<script src="myApp.module.js"></script>
<script src="templates.run.js"></script>
<script src="stopWatch/directives/stopWatch/stop.watch.module.js"></script>
<script src="stopWatch/directives/stopWatch/stop.watch.directive.js"></script>
<script src="stopWatch/directives/stopWatch/stop.watch.time.filter.js"></script>
<script src="stopWatch/stop.watch.test.controller.js"></script>
<script src="transcludeTest/superComponent/super.component.module.js"></script>
<script src="transcludeTest/superComponent/super.component.directive.js"></script>
<script src="transcludeTest/superComponent/super.component.test.controller.js"></script>
<script src="transcludeTest/superComponentRepeatedVersion/super.component.repeated.module.js"></script>
<script src="transcludeTest/superComponentRepeatedVersion/super.component.repeated.test.controller.js"></script>
<script src="transcludeTest/superComponentRepeatedVersion/super.component.repeated.directive.js"></script>
<title>Title</title>
</head>
<body ng-app="myApp">
<!-- stop watch -->
<div ng-include="'stopWatch/stop.watch.html'"></div>
<br>
<!-- super component : simple transclude case -->
<div ng-include="'transcludeTest/superComponent/super.component.html'"></div>
<br>
<!-- super component : with ng-repeat and use transcludeFn for optimization -->
<div ng-include="'transcludeTest/superComponentRepeatedVersion/super.component.repeated.html'"></div>
</body>
</html>