Batch js cleanup
authorColeman Watts <coleman@civicrm.org>
Fri, 10 Apr 2015 21:31:19 +0000 (17:31 -0400)
committerColeman Watts <coleman@civicrm.org>
Fri, 10 Apr 2015 21:31:19 +0000 (17:31 -0400)
templates/CRM/Batch/Form/Entry.tpl

index dd301864f119bd40add0e614d6800e7adcf8c14d..1007ac396b68a1e75edd61ea51449cca03fb387c 100755 (executable)
@@ -129,18 +129,18 @@ CRM.$(function($) {
     $($form).ajaxSubmit(options);
   });
  
cj('input[id*="primary_contact_"]').change(function() {
$('input[id*="primary_contact_"]').change(function() {
  var temp = this.id.split('_');
    var ROWID = temp[3];
-   if (cj(this).val()) {
+   if ($(this).val()) {
      updateContactInfo(ROWID,'primary_');
    }
  });
 
cj('select[id^="option_type_"]').each(function () {
-    if (cj(this).val() == 1) {
-      cj(this).attr('disabled', true);
-      cj(this).hide();
$('select[id^="option_type_"]').each(function () {
+    if ($(this).val() == 1) {
+      $(this).attr('disabled', true);
+      $(this).hide();
     }
   });