Merge pull request #4123 from eileenmcnaughton/CRM-15296
[civicrm-core.git] / templates / CRM / common / paymentBlock.tpl
index 8cb3c8a32b7c987bcada71a9dade6adff2c7786a..d9f04277324527627dee029e8b010289ca09aef3 100644 (file)
@@ -59,10 +59,10 @@ function buildPaymentBlock( type ) {
 }
 
 CRM.$(function($) {
-    cj('.crm-group.payment_options-group').show();
+    $('.crm-group.payment_options-group').show();
 
-    cj('input[name="payment_processor"]').change( function() {
-        buildPaymentBlock( cj(this).val() );
+    $('input[name="payment_processor"]').change( function() {
+        buildPaymentBlock( $(this).val() );
     });
 });