Wallet/js/controllers/homeWallet.js
Ivan Socolsky 19d1bde546 various fixes
2014-12-02 18:07:08 -03:00

13 lines
474 B
JavaScript

'use strict';
angular.module('copayApp.controllers').controller('HomeWalletController', function($scope, $rootScope) {
$scope.init = function() {
$rootScope.title = 'Home';
$scope.addr = _.last($rootScope.wallet.getReceiveAddresses());
// This is necesarry, since wallet can change in homeWallet, without running init() again.
$rootScope.$watch('wallet', function() {
$scope.addr = _.last($rootScope.wallet.getReceiveAddresses());
});
};
});