Front-end: fix when generating new address.

This commit is contained in:
Gustavo Cortez 2014-04-17 01:55:11 -03:00
commit 864156ed4f
2 changed files with 1 additions and 2 deletions

View file

@ -18,7 +18,7 @@ angular.module('copay.home').controller('HomeController',
console.log('[home.js.17:newAddr:]'); //TODO
var a = $rootScope.wallet.generateAddress();
console.log('[home.js.19]',a); //TODO
$scope.addrs.push({ addrStr: a.toString() });
$scope.addrs.push(a.toString());
};
$scope.selectAddr = function(addr) {