Skip to content

Commit

Permalink
Merge pull request berrberr#304 from aadfPT/master
Browse files Browse the repository at this point in the history
Fixing Spotify compatibility
  • Loading branch information
berrberr authored Apr 5, 2017
2 parents a1d5b79 + a319b9a commit c9b4fd8
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions code/js/controllers/SpotifyController.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@
_ = require("lodash");

var multiSelectors = {
play: [null, ".now-playing-bar .spoticon-play-32"],
pause: [null, ".now-playing-bar .spoticon-pause-32"],
play: [null, ".now-playing-bar button[class*=play]"],
pause: [null, ".now-playing-bar button[class*=pause]"],
playPause: ["#play-pause", null],
playNext: ["#next", ".now-playing-bar .spoticon-skip-forward-24"],
playPrev: ["#previous", ".now-playing-bar .spoticon-skip-back-24"],
playState: ["#play-pause.playing", ".now-playing-bar .spoticon-pause-32"],
playNext: ["#next", ".now-playing-bar button[class*=skip-forward]"],
playPrev: ["#previous", ".now-playing-bar button[class*=skip-back]"],
playState: ["#play-pause.playing", ".now-playing-bar button[class*=pause]"],
iframe: ["#app-player", null],
like: [".thumb.up", null],
dislike: [".thumb.down", null],
Expand Down

0 comments on commit c9b4fd8

Please sign in to comment.