As an user I want to receive an email after finishing a booking process. Change Ungleich logo in email to DG logo. Error in membership booking email order dates. Fixed #2670 Design order email when a booking is free.Fixed template issues. Helping natacha to fix bug deploying project. Fixing copies.Fixed #2682. Fixed #2685 fixing copies . Helping natacha fixing bugs. Fixed #2677 Address line change. Started reactivate membership feature

This commit is contained in:
Levi 2016-10-28 11:25:09 -05:00
commit ba2e231078
15 changed files with 319 additions and 30 deletions

View file

@ -24,6 +24,10 @@ $( document ).ready(function() {
}
});
//Acept term and conditions button
var submit_form_btn = $('#payment_button');
submit_form_btn.on('click', submit_payment);
@ -41,6 +45,12 @@ $( document ).ready(function() {
console.log("submiting");
e.preventDefault();
if (!$('.agree-terms').is(':checked')){
alert("You must accept terms and conditions.");
return;
}
/* Visual feedback */
$form.find('[type=submit]').html('Validating <i class="fa fa-spinner fa-pulse"></i>');
@ -119,7 +129,7 @@ $( document ).ready(function() {
} else {
return false;
}
}
};
$form.find('[type=submit]').prop('disabled', true);
var readyInterval = setInterval(function() {
@ -129,5 +139,7 @@ $( document ).ready(function() {
}
}, 250);
});

View file

@ -19,5 +19,4 @@ $( document ).ready(function() {
});
});