-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjs.js
135 lines (110 loc) · 2.97 KB
/
js.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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
var app = angular.module("myApp" , ["ngRoute"]);
app.config(['$routeProvider', function ($routeProvider) {
$routeProvider
.when("/einir",{
templateUrl : "templates/einir.tpl.html"
}).when("/aron", {
templateUrl: 'templates/aron.tpl.html',
// controller: 'HomeController'
}).when("/viktor", {
templateUrl: 'templates/viktor.tpl.html',
// controller: 'CreateController'
}).when("/andri", {
templateUrl: 'templates/andri.tpl.html',
// controller: 'ExamController'
}).otherwise({ redirectTo: '/' });
}])
app.controller('NameCtrl', ['$scope', function ($scope) {
$scope.title = "Depublic Music";
$scope.albums = [
{ albumname : "The Silence In Your Head", year : "2014"},
];
$scope.songs = [
{
name : "Out Of Control",
songurl : "wav/01_Out_Of_Control.wav",
lyrics : "lyrics/OutOfControl.txt"
},
{
name : "Scream",
songurl : "wav/02_Scream.wav",
lyrics : "lyrics/Scream.txt"
},
{
name : "Whatever Comes Tomorrow",
songurl : "wav/03_Whatever_Comes_Tomorrow.wav",
lyrics : "lyrics/WhateverComesTomorrow.txt"
},
{
name : "Sign Of A Fallen Angel",
songurl : "wav/04_Sign_Of_A_Fallen_Angel.wav",
lyrics : "lyrics/SignOfAFallenAngel.txt"
},
{
name : "Lost It All",
songurl : "wav/05_Lost_It_All.wav",
lyrics : "lyrics/LostItAll.txt"
},
{
name : "The Promise I Made To You",
songurl : "wav/06_The_Promise_I_Made_To_You.wav",
lyrics : "lyrics/ThePromiseIMadeToYou.txt"
},
{
name : "The War Lives On",
songurl : "wav/07_The_War_Lives_On.wav",
lyrics : "lyrics/TheWarLivesOn.txt"
},
{
name : "7 Days",
songurl : "wav/08_7_Days.wav",
lyrics : "lyrics/SevenDays.txt"
},
{
name : "Your Shadow",
songurl : "wav/09_Your_Shadow.wav",
lyrics : "lyrics/YourShadow.txt"
},
{
name : "Fed Up",
songurl : "wav/10_Fed_Up.wav",
lyrics : "lyrics/FedUp.txt"
},
{
name : "The Bridges You Have Burned",
songurl : "wav/11_The_Bridges_You_Have_Burned.wav",
lyrics : "lyrics/TheBridgesYouHaveBurned.txt"
},
{
name : "Slow Down!",
songurl : "wav/12_Slow_Down!.wav",
lyrics : "lyrics/SlowDown.txt"
},
{
name : "Foreplay",
songurl : "wav/13_Foreplay.wav",
// lyrics : "lyrics/.txt"
},
{
name : "Lap Dance",
songurl : "wav/14_Lap_Dance.wav",
lyrics : "lyrics/LapDance.txt"
}
];
$scope.members = [
{ name : "Andri Eyvindsson", url: "#andri" },
{ name : "Aron Örn Brynjólfsson", url: "#aron" },
{ name : "Einir Guðlaugsson", url: "#einir", pic: "img/einir.jpg" },
{ name : "Viktor Smári Ágústuson", url: "#viktor" },
];
$scope.websites = [
{ name: "Youtube" , url: "http://www.youtube.com/depublicmusic"},
{ name: "Facebook" , url: "http://www.facebook.com/depublic"},
{ name: "Google+" , url: "https://plus.google.com/106817930478334086312/about"},
];
}]);
app.controller('AppCtrl',function ($scope) {
$scope.model = {
message :"yea"
}
});