add first uri handler
This commit is contained in:
parent
16293b035d
commit
433f1570de
4 changed files with 43 additions and 6 deletions
|
|
@ -26,10 +26,6 @@ angular
|
|||
templateUrl: 'addresses.html',
|
||||
validate: true
|
||||
})
|
||||
.when('/join/:id', {
|
||||
templateUrl: 'join.html',
|
||||
validate: true
|
||||
})
|
||||
.when('/transactions', {
|
||||
templateUrl: 'transactions.html',
|
||||
validate: true
|
||||
|
|
@ -49,6 +45,9 @@ angular
|
|||
.when('/unsupported', {
|
||||
templateUrl: 'unsupported.html'
|
||||
})
|
||||
.when('/uri_payment/:data', {
|
||||
templateUrl: 'uri_payment.html'
|
||||
})
|
||||
.otherwise({
|
||||
templateUrl: '404.html'
|
||||
});
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue