Wallet/js/controllers/home.js
Matias Alejo Garcia c0360e7beb plugin system v0
2014-09-15 14:07:43 -03:00

10 lines
375 B
JavaScript

'use strict';
angular.module('copayApp.controllers').controller('HomeController',
function($scope, $rootScope, $location, walletFactory, notification, controllerUtils, pluginManager) {
controllerUtils.redirIfLogged();
$scope.loading = false;
$scope.hasWallets = (walletFactory.getWallets() && walletFactory.getWallets().length > 0) ? true : false;
});