copay/old/uri.js

13 lines
347 B
JavaScript
Raw Normal View History

'use strict';
angular.module('copayApp.controllers').controller('uriController',
2016-06-11 18:52:23 -07:00
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
});
});