Skip to content

Instantly share code, notes, and snippets.

@MeoMix
Created November 9, 2012 05:04
Show Gist options
  • Save MeoMix/4043812 to your computer and use it in GitHub Desktop.
Save MeoMix/4043812 to your computer and use it in GitHub Desktop.
var constructor = _.once(function(){
return {
//Setup a played recently array!
previousSongs: [],
nowPlaying: null,
comingUp: [],
//Is being used when comingUp is empty
endQueue: []
};
});
return {
get previousSongs(){
return constructor().previousSongs;
},
get nowPlaying(){
return constructor().nowPlaying;
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment