Changed main currency to JPY

This commit is contained in:
2017-10-06 05:53:49 +02:00
parent 03c79e2932
commit c0d57e51c9
10 changed files with 81 additions and 81 deletions

View File

@ -327,10 +327,10 @@ export function chargeUp(arn: AnimeNotifier, button: HTMLElement) {
throw "Error finding PayPal payment link"
}
let url = link.href
console.log(url)
arn.statusMessage.showInfo("Redirecting to PayPal...", 5000)
window.open(url, "_blank")
let url = link.href
window.location.href = url
})
.catch(err => arn.statusMessage.showError(err))
.then(() => arn.loading(false))