Wallet/js/controllers/homeWallet.js
Gustavo Maximiliano Cortez a1f6eec305 removed console.log
2014-10-31 14:01:45 -03:00

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];
}
}
);