handle URLs

This commit is contained in:
Matias Alejo Garcia 2016-08-25 12:24:25 -03:00
commit 3d3cacc15c
No known key found for this signature in database
GPG key ID: 02470DB551277AB3
4 changed files with 23 additions and 19 deletions

View file

@ -1,12 +0,0 @@
'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
});
});