Adds the left and right keys to get previous / next song

Removes the previous code in main-controller.js
This commit is contained in:
Hyzual 2015-02-08 22:31:02 +01:00
parent a85865371c
commit 5a7a06d1a2
4 changed files with 41 additions and 74 deletions

View file

@ -93,12 +93,12 @@ describe("Main controller", function() {
});
describe("When I toggle pause,", function() {
it("given that we're using the Jukebox mode, it sends a 'pause' command to the jukebox", function() {
it("given that we're using the Jukebox mode, it sends a 'stop' command to the jukebox", function() {
mockGlobals.settings.Jukebox = true;
spyOn(scope, "sendToJukebox");
scope.togglePause();
expect(scope.sendToJukebox).toHaveBeenCalledWith('pause');
expect(scope.sendToJukebox).toHaveBeenCalledWith('stop');
});
it("it toggles pause using the player service", function() {