Merge pull request #3167 from cmgustavo/bug/no-wallets01

Fix no-wallet home
This commit is contained in:
Matias Alejo Garcia 2015-09-14 15:02:27 -03:00
commit 80e6676945
1 changed files with 4 additions and 2 deletions

View File

@ -1145,6 +1145,8 @@ angular.module('copayApp.controllers').controller('walletHomeController', functi
/* Start setup */ /* Start setup */
this.bindTouchDown(); this.bindTouchDown();
this.setAddress(); if (profileService.focusedClient) {
this.setSendFormInputs(); this.setAddress();
this.setSendFormInputs();
}
}); });