-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
32. jQuery: Next and Previous Buttons
- Loading branch information
Colleen
committed
Sep 29, 2015
1 parent
58bfc91
commit ab49331
Showing
3 changed files
with
129 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
var albumPicasso = { | ||
name: 'The Colors', | ||
artist: 'Pablo Picasso', | ||
label: 'Cubism', | ||
year: '1881', | ||
albumArtUrl: 'assets/images/album_covers/01.png', | ||
songs: [ | ||
{ name: 'Blue', length: '4:26' }, | ||
{ name: 'Green', length: '3:14' }, | ||
{ name: 'Red', length: '5:01' }, | ||
{ name: 'Pink', length: '3:21' }, | ||
{ name: 'Magenta', length: '2:15' } | ||
] | ||
}; | ||
|
||
var albumMarconi = { | ||
name: 'The Telephone', | ||
artist: 'Guglielmo Marconi', | ||
label: 'EM', | ||
year: '1909', | ||
albumArtUrl: 'assets/images/album_covers/20.png', | ||
songs: [ | ||
{ name: 'Hello, Operator?', length: '1:01' }, | ||
{ name: 'Ring, ring, ring', length: '5:01' }, | ||
{ name: 'Fits in your pocket', length: '3:21' }, | ||
{ name: 'Can you hear me now?', length: '3:14' }, | ||
{ name: 'Wrong phone number', length: '2:15' } | ||
] | ||
}; |