Fix URI-payment for mobile

This commit is contained in:
Gustavo Maximiliano Cortez 2015-04-16 16:56:15 -03:00
commit c2f2ad95ca
5 changed files with 14 additions and 6 deletions

View file

@ -57,7 +57,9 @@ angular.element(document).ready(function() {
function handleBitcoinURI(url) {
if (!url) return;
window.location = '#/uri-payment/' + url;
setTimeout(function() {
window.location = '#/uri-payment/' + url;
}, 1000);
}
window.plugins.webintent.getUri(handleBitcoinURI);