-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtrueblood.js
84 lines (82 loc) · 1.77 KB
/
trueblood.js
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
var myApp = angular.module('myApp', []);
myApp.factory('TrueBlood', function() {
var TrueBlood = {};
TrueBlood.cast = [
{
name: "Anna Paquin",
character: "Sookie Stackhouse"
},
{
name: "Stephen Moyer",
character: "Bill Compton"
},
{
name: "Sam Trammell",
character: "Sam Merlotte"
},
{
name: "Ryan Kwanten",
character: "Jason Stackhouse"
},
{
name: "Rutina Wesley",
character: "Tara Thornton"
},
{
name: "Alexander Skarsgård",
character: "Eric Northman"
},
{
name: "Chris Bauer",
character: "Andy Bellefleur"
},
{
name: "Nelsan Ellis",
character: "Lafayette Reynolds"
},
{
name: "Jim Parrack",
character: "Hoyt Fortenberry"
},
{
name: "Adina Porter",
character: "Lettie Mae Daniels"
},
{
name: "Carrie Preston",
character: "Arlene Fowler Bellefleur"
},
{
name: "Michael Raymond-James",
character: "Rene Lenier"
},
{
name: "William Sanderson",
character: "Bud Dearborne"
},
{
name: "Kristin Bauer van Straten",
character: "Pam Swynford de Beaufort"
},
{
name: "Bailey Noble",
character: "Adilyn Bellefleur"
},
{
name: "Karolina Wydra",
character: "Violet Mazurski"
},
{
name: "Joe Manganiello",
character: "Alcide Herveaux"
},
{
name: "Deborah Ann Woll",
character: "Jessica Hamby"
}
];
return TrueBlood;
})
function TrueBloodCtrl($scope, TrueBlood) {
$scope.trueBlood = TrueBlood;
}