Skip to content

Commit

Permalink
updated
Browse files Browse the repository at this point in the history
  • Loading branch information
BeycanDeveloper committed Jul 21, 2024
1 parent 64a208b commit 21d9e31
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions assets/js/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
$(document).ready(() => {
let startedApp;
let oldAmount = 0;
let currentAmount = 0;
let completed = false;
const {
formId,
Expand Down Expand Up @@ -31,7 +32,7 @@
}
});

if (isEmpty) {
if (isEmpty || !currentAmount) {
el.hide();
if ($('#cpEmptyMessage').length === 0) {
$('<div id="cpEmptyMessage" class="gform_validation_errors" style="text-align:center">' + pleaseFillForm + '</div>').insertBefore(el);
Expand All @@ -46,11 +47,10 @@
$('#gform_' + formId).on('keyup', checkFormEmpty);

const paymentCompleted = async (ctx, formId) => {
ctx.disablePopup = true;
const form = $('#gform_' + formId);
const helpers = window.cpHelpers || window.cplHelpers;
const txHash = ctx.transaction.hash || ctx.transaction.id;
helpers.closePopup();
await helpers.sleep(100);
helpers.successPopup('Payment completed successfully!').then(() => {
$('.overlay').remove();
startedApp.store.payment.$reset();
Expand All @@ -72,7 +72,8 @@
}

gform?.addFilter('gform_product_total', function (amount, formId) {
if (amount !== oldAmount && !completed) {
currentAmount = amount;
if (amount && amount !== oldAmount && !completed) {
oldAmount = amount;
if (window.CryptoPayApp) {
CryptoPayApp.events.add('confirmationCompleted', async (ctx) => {
Expand Down

0 comments on commit 21d9e31

Please sign in to comment.