fixed payment membership button issue, fixed support us posts issue

This commit is contained in:
Levi 2017-01-30 21:15:59 -05:00
commit 54e3059cef
6 changed files with 30 additions and 29 deletions

View file

@ -114,13 +114,13 @@ $( document ).ready(function() {
}
}
$form.find('[type=submit]').prop('disabled', true);
var readyInterval = setInterval(function() {
if (paymentFormReady()) {
$form.find('[type=submit]').prop('disabled', false);
clearInterval(readyInterval);
}
}, 250);
// $form.find('[type=submit]').prop('disabled', true);
// var readyInterval = setInterval(function() {
// if (paymentFormReady()) {
// $form.find('[type=submit]').prop('disabled', false);
// clearInterval(readyInterval);
// }
// }, 250);
});