CRM-15389 - js error in communication prefs
authorPaul Campbell <paul.campbell@childreach.org.uk>
Tue, 30 Sep 2014 11:27:20 +0000 (12:27 +0100)
committerPaul Campbell <paul.campbell@childreach.org.uk>
Tue, 30 Sep 2014 11:27:20 +0000 (12:27 +0100)
----------------------------------------
* CRM-15389: Cannot change contact greetings due to Javascript error
  https://issues.civicrm.org/jira/browse/CRM-15389

templates/CRM/Contact/Form/Edit/CommunicationPreferences.tpl

index 8400c2cb4c5d223a601bdac5614599eadcccc8b2..63cc740b65dd3767207591a92c82b63902d357a1 100644 (file)
@@ -149,18 +149,19 @@ CRM.$(function($) {
 });
 
 function showGreeting( element ) {
-    $("#" + element ).show( );
-    $("#" + element + '_display' ).hide( );
+    cj("#" + element ).show( );
+    cj("#" + element + '_display' ).hide( );
 
     // TO DO fix for custom greeting
     var fldName = '#' + element + '_id';
-    if ( $( fldName ).val( ) == 4 ) {
-        $("#greetings1").show( );
-        $("#greetings2").show( );
-        $( fldName + "_html").show( );
-        $( fldName + "_label").show( );
+    if ( cj( fldName ).val( ) == 4 ) {
+        cj("#greetings1").show( );
+        cj("#greetings2").show( );
+        cj( fldName + "_html").show( );
+        cj( fldName + "_label").show( );
     }
 }
 
+
 </script>
 {/literal}