Fixes the queue test

This commit is contained in:
Hyzual 2014-11-30 19:25:23 +01:00
parent e5846e30f9
commit 91b112cb0a
2 changed files with 15 additions and 12 deletions

View file

@ -1,7 +1,7 @@
angular.module('jamstash.queue.ctrl', [])
angular.module('jamstash.queue.ctrl', ['jamstash.player.service'])
.controller('QueueCtrl', ['$scope', '$rootScope', '$routeParams', '$location', 'utils', 'globals', 'player',
function QueueCtrl($scope, $rootScope, $routeParams, $location, utils, globals, player) {
.controller('QueueCtrl', ['$scope', '$rootScope', 'globals', 'player',
function QueueCtrl($scope, $rootScope, globals, player) {
'use strict';
$scope.settings = globals.settings;
$scope.song = $rootScope.queue;