mobile support for send/receive buttons and some refactors to fix the navigation flow.

This commit is contained in:
Sebastiaan Pasma 2018-07-26 19:38:29 +02:00
commit b2ed16bf21
No known key found for this signature in database
GPG key ID: 9A2B0C8B95A1D26F
4 changed files with 44 additions and 15 deletions

View file

@ -483,7 +483,14 @@ angular.module('copayApp.controllers').controller('walletDetailsController', fun
function rgbToHex(r, g, b) {
return "#" + componentToHex(r) + componentToHex(g) + componentToHex(b);
}
$scope.goToSend = function() {
$state.go('tabs.home', {
walletId: $scope.wallet.id
}).then(function () {
$ionicHistory.clearHistory();
$state.go('tabs.send');
});
};
$scope.goToReceive = function() {
$state.go('tabs.home', {
walletId: $scope.wallet.id
@ -494,4 +501,12 @@ angular.module('copayApp.controllers').controller('walletDetailsController', fun
});
});
};
$scope.goToBuy = function() {
$state.go('tabs.home', {
walletId: $scope.wallet.id
}).then(function () {
$ionicHistory.clearHistory();
$state.go('tabs.buyandsell');
});
};
});