Improvement - 339 - "Payment received" screen is skipped after first transaction
This commit is contained in:
parent
9a3e0fdb06
commit
56a59093ee
2 changed files with 6 additions and 2 deletions
|
|
@ -126,7 +126,7 @@ angular.module('copayApp.controllers').controller('tabReceiveController', functi
|
|||
}
|
||||
}
|
||||
$scope.paymentReceivedCoin = $scope.wallet.coin;
|
||||
$scope.showingPaymentReceived = true
|
||||
$scope.showingPaymentReceived = true;
|
||||
$scope.$apply();
|
||||
}
|
||||
}
|
||||
|
|
@ -248,6 +248,10 @@ angular.module('copayApp.controllers').controller('tabReceiveController', functi
|
|||
$scope.setAddress();
|
||||
};
|
||||
|
||||
$scope.togglePaymentScreen = function() {
|
||||
$scope.showingPaymentReceived = !$scope.showingPaymentReceived;
|
||||
};
|
||||
|
||||
$scope.showWalletSelector = function() {
|
||||
if ($scope.singleWallet) return;
|
||||
$scope.walletSelectorTitle = gettextCatalog.getString('Select a wallet');
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue