handle URLs
This commit is contained in:
parent
d5d3f9ee28
commit
3d3cacc15c
4 changed files with 23 additions and 19 deletions
11
old/uri.html
Normal file
11
old/uri.html
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
|
||||
<div class="row columns p20" ng-controller="uriController">
|
||||
<div class="text-center">
|
||||
<logo width="146"></logo>
|
||||
<div class="text-white" ng-include="'views/includes/version.html'"></div>
|
||||
</div>
|
||||
<h3 class="text-center" translate>
|
||||
Please wait to be redirected...
|
||||
</h3>
|
||||
</div>
|
||||
|
||||
12
old/uri.js
Normal file
12
old/uri.js
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
'use strict';
|
||||
angular.module('copayApp.controllers').controller('uriController',
|
||||
function($stateParams, $log, openURLService) {
|
||||
|
||||
|
||||
/* This is only for BROWSER links, it is not excecuted on mobile devices */
|
||||
|
||||
$log.info('DEEP LINK from Browser:' + $stateParams.url);
|
||||
openURLService.handleURL({
|
||||
url: $stateParams.url
|
||||
});
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue