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

Merge pull request #64 from kurund/js-fixes

more js fixes and code cleanup
parents 032970f0 60a5dc10
No related branches found
No related tags found
No related merge requests found
...@@ -5,6 +5,7 @@ ...@@ -5,6 +5,7 @@
(function ($) { (function ($) {
// Response from Stripe.createToken. // Response from Stripe.createToken.
function stripeResponseHandler(status, response) { function stripeResponseHandler(status, response) {
var submitButton = $("form.stripe-payment-form input[type='submit']:last");
if (response.error) { if (response.error) {
$('html, body').animate({scrollTop: 0}, 300); $('html, body').animate({scrollTop: 0}, 300);
// Show the errors on the form. // Show the errors on the form.
...@@ -19,21 +20,15 @@ ...@@ -19,21 +20,15 @@
+ '</ul>' + '</ul>'
+ '</div>'); + '</div>');
$('form.stripe-payment-form input.form-submit').removeAttr("disabled"); submitButton.prop('disabled', false);
} }
else { else {
var token = response['id']; var token = response['id'];
// Update form with the token & submit. // Update form with the token & submit.
$("input#stripe-token").val(token); $("input#stripe-token").val(token);
// clear actual credit card information and set dummy cc details submitButton.prop('disabled', false);
// we are setting dummy cc details to prevent validation errors $("form.stripe-payment-form").get(0).submit();
// this is a work around so that we don't transmit sensitive data
$('#credit_card_number').val('4111111111111111');
$('#cvv2').val('111');
$('form.stripe-payment-form input.form-submit').removeAttr("disabled");
$("input[type='submit']:last").click();
} }
} }
...@@ -55,11 +50,16 @@ ...@@ -55,11 +50,16 @@
$('#crm-ajax-dialog-1 form').addClass('stripe-payment-form'); $('#crm-ajax-dialog-1 form').addClass('stripe-payment-form');
} }
$("form.stripe-payment-form").unbind('submit');
// Intercept form submission. // Intercept form submission.
$("form.stripe-payment-form").submit(function (event) { $("form.stripe-payment-form").submit(function (event) {
event.preventDefault();
event.stopPropagation();
var $form = $(this); var $form = $(this);
// Disable the submit button to prevent repeated clicks. // Disable the submit button to prevent repeated clicks.
$("input[type='submit']:last").attr('disabled', true); $form.find("input[type='submit']:last").prop('disabled', true);
if ($form.find("#priceset input[type='radio']:checked").data('amount') == 0) { if ($form.find("#priceset input[type='radio']:checked").data('amount') == 0) {
return true; return true;
...@@ -95,9 +95,7 @@ ...@@ -95,9 +95,7 @@
exp_year: cc_year exp_year: cc_year
}, stripeResponseHandler); }, stripeResponseHandler);
// Prevent the form from submitting with the default action.
return false; return false;
}); });
}); });
}(CRM.$));
}(jQuery));
...@@ -129,7 +129,12 @@ function stripe_civicrm_buildForm($formName, &$form) { ...@@ -129,7 +129,12 @@ function stripe_civicrm_buildForm($formName, &$form) {
} }
// For the 'Record Contribution' backend page. // For the 'Record Contribution' backend page.
if (($formName == 'CRM_Contribute_Form_Contribution' || $formName == 'CRM_Event_Form_Participant' || $formName == 'CRM_Member_Form_Membership' && !empty($form->_processors)) || stristr($formName, '_Main')) { $backendForms = array(
'CRM_Contribute_Form_Contribution',
'CRM_Event_Form_Participant',
'CRM_Member_Form_Membership'
);
if (in_array($formName, $backendForms) && !empty($form->_processors)) {
if (!isset($form->_elementIndex['stripe_token'])) { if (!isset($form->_elementIndex['stripe_token'])) {
$form->addElement('hidden', 'stripe_token', NULL, array('id' => 'stripe-token')); $form->addElement('hidden', 'stripe_token', NULL, array('id' => 'stripe-token'));
stripe_add_stripe_js($form); stripe_add_stripe_js($form);
......
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