Ref custom amount. Also fixes small screen issue
This commit is contained in:
parent
e8a18c9eb4
commit
1c91420581
6 changed files with 170 additions and 71 deletions
|
|
@ -656,8 +656,17 @@ angular.module('copayApp').config(function(historicLogProvider, $provide, $logPr
|
|||
*
|
||||
*/
|
||||
|
||||
.state('tabs.receive.amount', {
|
||||
url: '/amount/:walletId/:customAmount/:toAddress',
|
||||
.state('tabs.paymentRequest', {
|
||||
url: '/payment-request',
|
||||
abstract: true,
|
||||
params: {
|
||||
id: null,
|
||||
nextStep: 'tabs.paymentRequest.confirm'
|
||||
}
|
||||
})
|
||||
|
||||
.state('tabs.paymentRequest.amount', {
|
||||
url: '/amount',
|
||||
views: {
|
||||
'tab-receive@tabs': {
|
||||
controller: 'amountController',
|
||||
|
|
@ -665,8 +674,8 @@ angular.module('copayApp').config(function(historicLogProvider, $provide, $logPr
|
|||
}
|
||||
}
|
||||
})
|
||||
.state('tabs.receive.customAmount', {
|
||||
url: '/customAmount/:walletId/:toAmount/:toAddress',
|
||||
.state('tabs.paymentRequest.confirm', {
|
||||
url: '/confirm/:amount/:currency',
|
||||
views: {
|
||||
'tab-receive@tabs': {
|
||||
controller: 'customAmountController',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue