Last active
August 29, 2015 14:16
-
-
Save dmlap/00770c497330bb7ee616 to your computer and use it in GitHub Desktop.
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
// option 1 | |
player.playlist(); // get the current playlist | |
player.playlist([a, b, c]); // set the current playlist | |
player.playlistItem(1); // advance to b | |
player.next(); // advance to c | |
player.previous(); // return to b | |
// option 2 | |
player.playlist.list(); // get the current playlist | |
player.playlist.list([a, b, c]); // set the current playlist | |
player.playlist.item(1); // advance to b | |
player.playlist.next(); // advance to c | |
player.playlist.previous(); // return to b | |
// option 3 | |
player.playlist(); // get the current playlist | |
player.playlist([a, b, c]); // set the current playlist | |
player.playlist.item(1); // advance to b | |
player.playlist.next(); // advance to c | |
player.playlist.previous(); // return to b |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment