From cf0b1ccd31546834c2dcbc42732bd0b0c94a25ca Mon Sep 17 00:00:00 2001 From: Chuck Scott Date: Tue, 5 Jun 2018 12:35:09 -0400 Subject: [PATCH] Added br to cancel and error message for PayPal checkout dialog box. --- views/front/registrations/checkout.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/views/front/registrations/checkout.html b/views/front/registrations/checkout.html index ebf6d35..8e5101c 100644 --- a/views/front/registrations/checkout.html +++ b/views/front/registrations/checkout.html @@ -649,10 +649,10 @@ }); }, onCancel: function(data, actions) { - $('#payPalPaymentWarningMessage').html('You canceled the PayPal Payment. Payment is required to submit your {$terms.reg_term_registration_plur}. If you don\'t wish to pay with PayPal, click the button below and select another payment method.'); + $('#payPalPaymentWarningMessage').html('
You canceled the PayPal Payment. Payment is required to submit your {$terms.reg_term_registration_plur}. If you don\'t wish to pay with PayPal, click the button below and select another payment method.'); }, onError: function(err) { - $('#payPalPaymentWarningMessage').html('There was a problem with your PayPal Payment. Payment is required to submit your {$terms.reg_term_registration_plur}. If you\'re unable to pay with PayPal, click the button below and select another payment method.'); + $('#payPalPaymentWarningMessage').html('
There was a problem with your PayPal Payment. Payment is required to submit your {$terms.reg_term_registration_plur}. If you\'re unable to pay with PayPal, click the button below and select another payment method.'); }, // Wait for the payment to be authorized by the customer onAuthorize: function(data, actions) { -- 2.17.1