Feature: add account switch

This commit is contained in:
2015-10-09 12:59:38 +00:00
parent 13b0a57600
commit 69570d8702
8 changed files with 173 additions and 27 deletions

View File

@@ -5,9 +5,9 @@
.module('cloudbudget')
.controller('AccountsController', AccountsController);
AccountsController.$inject = ['$scope', '$location', '$rootScope', 'FlashService', 'AccountsService'];
AccountsController.$inject = ['$scope', '$location', 'FlashService', 'AccountsService'];
function AccountsController($scope, $location, $rootScope, FlashService, AccountsService) {
function AccountsController($scope, $location, FlashService, AccountsService) {
var vm = this;
vm.dataLoading = false;