Skip to content

Instantly share code, notes, and snippets.

@dasevilla
Created March 28, 2014 17:12
Show Gist options
  • Save dasevilla/9837849 to your computer and use it in GitHub Desktop.
Save dasevilla/9837849 to your computer and use it in GitHub Desktop.
Start and pause a track at specific positions
R.player.on("change:position", function(newValue) {
console.log("the position is now " + newValue);
if (newValue == 30) {
R.player.pause();
}
});
R.player.play({
source: "t2866554",
initialPosition: 5
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment