This commit is contained in:
Trevor Squillario 2014-02-08 00:22:54 -05:00
parent ff10d7779c
commit 95f7ef53f2
27 changed files with 606 additions and 292 deletions

8
js/controllers/queue.js Normal file
View file

@ -0,0 +1,8 @@
JamStash.controller('QueueCtrl',
function QueueCtrl($scope, $rootScope, $routeParams, $location, utils, globals, json, notifications) {
$scope.settings = globals.settings;
//$scope.song = $rootScope.queue;
//angular.copy($rootScope.queue, $scope.song);
$scope.song = $rootScope.queue;
});