Fix payment uri handling

This commit is contained in:
Yemel Jardi 2014-10-09 10:19:13 -03:00
commit d849df98c6
3 changed files with 17 additions and 6 deletions

View file

@ -17,7 +17,7 @@ function onDeviceReady() {
function handleBitcoinURI(url) {
if (!url) return;
window.location = '#!/uri-payment/' + encodeURIComponent(url);
window.location = '#!/uri-payment/' + url;
}
window.plugins.webintent.getUri(handleBitcoinURI);