better spinners at wallet details

This commit is contained in:
Matias Alejo Garcia 2017-01-17 11:41:39 -03:00
commit 716b341dc4
No known key found for this signature in database
GPG key ID: 02470DB551277AB3
4 changed files with 35 additions and 12 deletions

View file

@ -353,11 +353,11 @@ angular.module('copayApp.controllers').controller('walletDetailsController', fun
listeners = [
$rootScope.$on('bwsEvent', function(e, walletId) {
if (walletId == $scope.wallet.id)
updateStatus();
$scope.updateAll();
}),
$rootScope.$on('Local/TxAction', function(e, walletId) {
if (walletId == $scope.wallet.id)
updateStatus();
$scope.updateAll();
}),
];
});