Merge pull request #172 from cmgustavo/matias/bug/notif3-layout-pending

Clean pendingForUs when change wallet. Fix root.go
This commit is contained in:
Matias Alejo Garcia 2015-04-24 03:19:36 -03:00
commit dc0e0bb91f
4 changed files with 12 additions and 7 deletions

View file

@ -74,6 +74,7 @@ angular.module('copayApp.controllers').controller('indexController', function($r
self.notAuthorized = false;
self.txHistory = [];
self.txHistoryPaging = false;
self.pendingTxProposalsCountForUs = null;
$timeout(function() {
self.hasProfile = true;

View file

@ -124,4 +124,8 @@ angular.module('copayApp.controllers').controller('topbarController', function($
}
};
this.goHome = function() {
go.walletHome();
};
});