Skip to content
Snippets Groups Projects
Commit d62c42dc authored by Joshua Walker's avatar Joshua Walker
Browse files

Merge pull request #47 from circleinteractive/4.4-1.8

parents 883c155e 1c5307fb
No related branches found
No related tags found
No related merge requests found
......@@ -6,6 +6,7 @@
// Response from Stripe.createToken.
function stripeResponseHandler(status, response) {
if (response.error) {
$('html, body').animate({ scrollTop: 0 }, 300);
// Show the errors on the form.
......@@ -49,6 +50,7 @@
if ($(this).find("#priceset input[type='radio']:checked").data('amount') == 0) {
return true;
}
// Handle multiple payment options and Stripe not being chosen.
if ($(this).find(".crm-section.payment_processor-section").length > 0) {
if (!($(this).find('input[name="hidden_processor"]').length > 0)) {
......@@ -56,6 +58,12 @@
}
}
// Handle pay later (option value '0' in payment_processor radio group)
if ($(this).find('input[name="payment_processor"]:checked').length &&
!parseInt($(this).find('input[name="payment_processor"]:checked').val())) {
return true;
}
// Handle changes introduced in CiviCRM 4.3.
if ($(this).find('#credit_card_exp_date_M').length > 0) {
var cc_month = $(this).find('#credit_card_exp_date_M').val();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment