1
0
mirror of https://github.com/danbee/mpd-client synced 2025-03-04 08:39:09 +00:00

Remove unnecessary dependencies.

This commit is contained in:
Dan Barber 2014-03-21 17:32:06 +00:00
parent aaa5b20086
commit 450c60890e
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
mpdClient.controller('queue', function ($scope, $resource, api, serverEvents) {
mpdClient.controller('queue', function ($scope, api, serverEvents) {
$scope.queueSongs = api.getQueue().query()
$scope.updateQueue = function(data) {

View File

@ -1,4 +1,4 @@
mpdClient.controller('transport', function ($scope, $http, api, serverEvents) {
mpdClient.controller('transport', function ($scope, api, serverEvents) {
$scope.status = {}
api.getStatus().success(function (data, status, headers, config) {