Wallet/js/controllers/homeWallet.js

14 lines
326 B
JavaScript
Raw Normal View History

2014-10-31 11:49:52 -03:00
'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];
}
}
);