-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfixtures.js
More file actions
43 lines (41 loc) · 1.51 KB
/
fixtures.js
File metadata and controls
43 lines (41 loc) · 1.51 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
var albumPicasso = {
title: 'The Colors',
artist: 'Pablo Picasso',
label: 'Cubism',
year: '1881',
albumArtUrl: 'assets/images/album_covers/01.png',
songs: [
{ title: 'Blue', duration: '4:26', audioUrl: 'assets/music/blue' },
{ title: 'Green', duration: '3:14', audioUrl: 'assets/music/green' },
{ title: 'Red', duration: '5:01', audioUrl: 'assets/music/red' },
{ title: 'Pink', duration: '3:21', audioUrl: 'assets/music/pink' },
{ title: 'Magenta', duration: '2:15', audioUrl: 'assets/music/magenta' }
]
};
var albumMarconi = {
title: 'The Telephone',
artist: 'Guglielmo Marconi',
label: 'EM',
year: '1909',
albumArtUrl: 'assets/images/album_covers/20.png',
songs: [
{ title: 'Hello, Operator?', duration: '1:01' },
{ title: 'Ring, ring, ring', duration: '5:01' },
{ title: 'Fits in your pocket', duration: '3:21' },
{ title: 'Can you hear me now?', duration: '3:14' },
{ title: 'Wrong phone number', duration: '2:15' }
]
};
var albumThamer = {
title: 'FirstSong',
artist: 'Thamer Alhejailan',
label: 'EM',
year: '2017',
albumArtUrl: 'assets/images/album_covers/13.png',
songs: [
{ title: 'Hello, Operator?', duration: '1:01' },
{ title: 'Ring, ring, ring', duration: '5:01' },
{ title: 'Fits in your pocket', duration: '3:21'},
{ title: 'Can you hear me now?', duration: '3:14' },
{ title: 'Wrong phone number', duration: '2:15'}
]