forked from bennadel/JavaScript-Demos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.htm
105 lines (70 loc) · 1.87 KB
/
index.htm
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<!doctype html>
<html ng-app="Demo">
<head>
<meta charset="utf-8" />
<title>
Compound Transclusion Prevented In AngularJS 1.2
</title>
<style type="text/css">
a[ ng-click ] {
cursor: pointer ;
text-decoration: underline ;
}
</style>
</head>
<body ng-controller="AppController">
<h1>
Compound Transclusion Prevented In AngularJS 1.2
</h1>
<p>
Show:
<a ng-click="showSubview( 'one' )">One</a> or
<a ng-click="showSubview( 'two' )">Two</a>
</p>
<!-- Render the ngInclude based on the switch. -->
<div ng-switch="subview">
<div ng-switch-when="one" ng-include=" 'one.htm' "></div>
<div ng-switch-when="two" ng-include=" 'two.htm' "></div>
</div>
<p>
<a href="./index.htm">Breaking Version</a><br />
<a href="./working.htm">Working Version</a><br />
</p>
<!-- Template for ngInclude. -->
<script type="text/ng-template" id="one.htm">
<div>
Template One
</div>
</script>
<!-- Template for ngInclude. -->
<script type="text/ng-template" id="two.htm">
<div>
Template Two
</div>
</script>
<!-- Load scripts. -->
<script type="text/javascript" src="../../vendor/jquery/jquery-2.0.3.min.js"></script>
<script type="text/javascript" src="../../vendor/angularjs/angular-1.2.4.min.js"></script>
<script type="text/javascript">
// Create an application module for our demo.
var app = angular.module( "Demo", [] );
// -------------------------------------------------- //
// -------------------------------------------------- //
// I control the root of the application.
app.controller(
"AppController",
function( $scope ) {
// I determine which subview to render.
$scope.subview = "one";
// ---
// PUBLIC METHODS.
// ---
// I show the given subview.
$scope.showSubview = function( newSubview ) {
$scope.subview = newSubview;
};
}
);
</script>
</body>
</html>