diff --git a/src/js/controllers/paymentUri.js b/src/js/controllers/paymentUri.js index c202945bf..b80ed1611 100644 --- a/src/js/controllers/paymentUri.js +++ b/src/js/controllers/paymentUri.js @@ -2,6 +2,7 @@ angular.module('copayApp.controllers').controller('paymentUriController', function($rootScope, $stateParams, $location, $timeout, profileService, configService, lodash, bitcore, go) { + window.ignoreMobilePause = true; function strip(number) { return (parseFloat(number.toPrecision(12))); }; diff --git a/src/js/init.js b/src/js/init.js index 298a40883..0bc31fddf 100644 --- a/src/js/init.js +++ b/src/js/init.js @@ -46,7 +46,7 @@ angular.element(document).ready(function() { } setTimeout(function() { var loc = window.location; - var ignoreMobilePause = loc.toString().match(/(buy|sell|uri-payment)/) ? true : false; + var ignoreMobilePause = loc.toString().match(/(buy|sell)/) ? true : false; window.ignoreMobilePause = ignoreMobilePause; }, 100); }, false);