luyadev / luya-module-payment

Abstraction layer for online payments with PayPal, SaferPay and others
MIT License
10 stars 4 forks source link

Payment Button widget #9

Closed nadar closed 5 years ago

nadar commented 6 years ago

Some browser allow double click on submit buttons, therefore sth like this could be implemented as helper or widget:

$('form').on('beforeSubmit', function (e) {
    $(':input[type=\"submit\"]').prop('disabled', true).addClass('disabled');
    $('#loader').fadeIn();
    return true;
});