Wallet/js/controllers/homeWallet.js
Matias Pando 470e16eaa1 Added home
2014-10-31 11:51:02 -03:00

17 lines
381 B
JavaScript

'use strict';
angular.module('copayApp.controllers').controller('HomeWalletController',
function($scope, $rootScope, $timeout, $modal, controllerUtils) {
controllerUtils.redirIfNotComplete();
$rootScope.title = 'Home';
if ($rootScope.addrInfos) {
$scope.address = $rootScope.addrInfos[0];
console.log('$scope.address', $scope.address);
}
}
);