Wallet/src/js/controllers/uri.js
Matias Alejo Garcia e28a4fb2ad
rm comments
2016-06-11 22:52:23 -03:00

12 lines
347 B
JavaScript

'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
});
});