Get tx after view loaded. If error, go back to home.
This commit is contained in:
parent
ba1af342e7
commit
490a707860
1 changed files with 4 additions and 1 deletions
|
|
@ -11,7 +11,10 @@ angular.module('copayApp.controllers').controller('txDetailsController', functio
|
|||
$scope.wallet = profileService.getWallet(data.stateParams.walletId);
|
||||
$scope.color = $scope.wallet.color;
|
||||
$scope.copayerId = $scope.wallet.credentials.copayerId;
|
||||
$scope.isShared = $scope.wallet.credentials.n > 1;
|
||||
$scope.isShared = $scope.wallet.credentials.n > 1;
|
||||
});
|
||||
|
||||
$scope.$on("$ionicView.afterEnter", function(event) {
|
||||
updateTx();
|
||||
|
||||
listeners = [
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue