16 lines
328 B
JavaScript
16 lines
328 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];
|
|
}
|
|
|
|
}
|
|
);
|