-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.js
More file actions
68 lines (58 loc) · 1.48 KB
/
Copy pathscript.js
File metadata and controls
68 lines (58 loc) · 1.48 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
57
58
59
60
61
62
63
64
65
66
67
68
var app = angular.module("lab16", []);
app.directive("changeOne", function() {
return {
restrict: "E",
replace: false,
template: "<h1>Beautiful Dreamer</h1>"
};
});
app.directive("changeThree", function() {
return {
restrict: "E",
replace: false,
template: "<h2>Cats make Good Pets</h2>"
};
});
app.directive("changeFour", function() {
return {
restrict: "E",
replace: false,
template: "<h4>The Quick Brown Fox Jumped Over the Lazy Dog!</h4>"
};
});
app.directive("changeSix", function() {
return {
restrict: "E",
replace: false,
template: "<h3>The Quick Brown Fox Jumped Over the Lazy Dog!</h3>"
};
});
app.directive("changeSeven", function() {
return {
restrict: "C",
replace: false,
template: "<p>BEWARE of Hungry Animals!</p>"
};
});
app.directive("changeEight", function() {
return {
restrict: "E",
replace: false,
template: "<li>BEWARE of Hungry Animals!</li>"
};
});
//<p class="welcome">Welcome, Guest. Please login or <a href="#">register</a>.</p>
app.directive("changeTwo", function() {
return {
restrict: "EA",
replace: false,
templateUrl: "changeTwo.html"
};
});
app.directive("changeFive", function() {
return {
restrict: "EA",
replace: false,
templateUrl: "changeFive.html"
};
});