Skip to content

Instantly share code, notes, and snippets.

View tobystokes's full-sized avatar

Toby Stokes tobystokes

View GitHub Profile
@tobystokes
tobystokes / listenWithMe.js
Created February 26, 2016 16:32 — forked from orrybaram/listenWithMe.js
Add an embedded spotify player that plays the track your currently listening to (or last listened to) Demo at http://orryb.com/projects/currentSpotify/
var ListenWithMe = (function() {
// Add your own config here
var LASTFM_API_KEY = "";
var LASTFM_USERNAME = "";
// Element to inject the widget into
var $playerWrapper = document.getElementById('spotify-player-wrapper');
return {
init: init
}