mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-20 10:40:29 +01:00
12 lines
250 B
JavaScript
12 lines
250 B
JavaScript
function openPaymentMethodDialog() {
|
|
var content = $("#vexPopupDialog").html();
|
|
vex.open({
|
|
unsafeContent: content
|
|
});
|
|
}
|
|
|
|
function closePaymentMethodDialog(currencyId) {
|
|
vex.closeAll();
|
|
return changeCurrency(currencyId);
|
|
}
|