Skip to content

Instantly share code, notes, and snippets.

@dmlap
Last active August 29, 2015 14:16
Show Gist options
  • Save dmlap/00770c497330bb7ee616 to your computer and use it in GitHub Desktop.
Save dmlap/00770c497330bb7ee616 to your computer and use it in GitHub Desktop.
// 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