Glidera working again. Rm ignoreMobilePause!

This commit is contained in:
Matias Alejo Garcia 2016-06-11 18:28:31 -03:00
commit ecf16d61ea
No known key found for this signature in database
GPG key ID: 02470DB551277AB3
8 changed files with 128 additions and 92 deletions

12
src/js/controllers/uri.js Normal file
View file

@ -0,0 +1,12 @@
'use strict';
angular.module('copayApp.controllers').controller('uriController',
function($rootScope, $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
});
});