mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-18 14:34:23 +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);
|
|
}
|