Skip to content

Commit

Permalink
Merge pull request #3806 from cmgustavo/bug/uri-payment-02
Browse files Browse the repository at this point in the history
Bug/uri payment 02
  • Loading branch information
matiu committed Jan 22, 2016
2 parents e354a2e + 6dd9a0e commit 2623e2e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/js/controllers/paymentUri.js
Original file line number Diff line number Diff line change
Expand Up @@ -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)));
};
Expand Down
2 changes: 1 addition & 1 deletion src/js/init.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 2623e2e

Please sign in to comment.