Added home
This commit is contained in:
parent
a6719b56c7
commit
470e16eaa1
6 changed files with 84 additions and 2 deletions
17
js/controllers/homeWallet.js
Normal file
17
js/controllers/homeWallet.js
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
'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);
|
||||
}
|
||||
|
||||
}
|
||||
);
|
||||
Loading…
Add table
Add a link
Reference in a new issue