Skip to content

Instantly share code, notes, and snippets.

@rubadeau
rubadeau / gist:2a3c6f1d92c11fc9ea4f
Created April 30, 2015 16:20
JS Record Player - Code Review
$(document).ready(function() {
$(".record").on("click", function() {
playSymphony();
});
var playTrack = function(track) {
track.play();
}
//Naming: Does it pause one track or all tracks?