btcpayserver/BTCPayServer/wwwroot/checkout/js/vexdialog.js

12 lines
250 B
JavaScript

function openPaymentMethodDialog() {
var content = $("#vexPopupDialog").html();
vex.open({
unsafeContent: content
});
}
function closePaymentMethodDialog(currencyId) {
vex.closeAll();
return changeCurrency(currencyId);
}