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