CRM-10773 - Tag form - remove unused js
authorColeman Watts <coleman@civicrm.org>
Sat, 11 Jan 2014 19:00:27 +0000 (11:00 -0800)
committerColeman Watts <coleman@civicrm.org>
Fri, 24 Jan 2014 06:24:07 +0000 (22:24 -0800)
CRM/Tag/Form/Tag.php
js/Common.js
templates/CRM/Tag/Form/Tag.tpl

index ecf53180fa0fdda3002b5dd2ec07a695ae0bfb76..cb1e8755ba73184f272182590da744e39aedbb4c 100644 (file)
@@ -86,14 +86,12 @@ class CRM_Tag_Form_Tag extends CRM_Core_Form {
     foreach ($allTag as $tagID => $varValue) {
       if (in_array($tagID, $entityTag)) {
         $tagAttribute = array(
-          'onclick' => "return changeRowColor(\"rowidtag_$tagID\")",
           'checked' => 'checked',
           'id' => "tag_{$tagID}",
         );
       }
       else {
         $tagAttribute = array(
-          'onclick' => "return changeRowColor(\"rowidtag_$tagID\")",
           'id' => "tag_{$tagID}",
         );
       }
index 756147558c1a8b9e7046fc76f612618a01099b39..961495c216e4341279b10f02f661a46909ebce59 100644 (file)
@@ -316,57 +316,6 @@ function on_load_init_checkboxes(form) {
   }
 }
 
-/**
- * Function to change the color of the class
- *
- * @param form - name of the form
- * @param rowid - id of the <tr>, <div> you want to change
- *
- * @access public
- * @return null
- */
-function changeRowColor(rowid, form) {
-  switch (document.getElementById(rowid).className) {
-    case 'even-row'          :
-      document.getElementById(rowid).className = 'selected even-row';
-      break;
-    case 'odd-row'           :
-      document.getElementById(rowid).className = 'selected odd-row';
-      break;
-    case 'selected even-row' :
-      document.getElementById(rowid).className = 'even-row';
-      break;
-    case 'selected odd-row'  :
-      document.getElementById(rowid).className = 'odd-row';
-      break;
-    case 'form-item'         :
-      document.getElementById(rowid).className = 'selected';
-      break;
-    case 'selected'          :
-      document.getElementById(rowid).className = 'form-item';
-  }
-}
-
-/**
- * This function is to show the row with  selected checkbox in different color
- * @param form - name of form that checkboxes are part of
- *
- * @access public
- * @return null
- */
-function on_load_init_check(form) {
-  for (i = 0; i < document.forms[form].elements.length; i++) {
-    if (( document.forms[form].elements[i].type == 'checkbox'
-      && document.forms[form].elements[i].checked == true )
-      || ( document.forms[form].elements[i].type == 'hidden'
-      && document.forms[form].elements[i].value == 1 )) {
-      var ss = document.forms[form].elements[i].id;
-      var row = 'rowid' + ss;
-      changeRowColor(row, form);
-    }
-  }
-}
-
 /**
  * reset all the radio buttons with a given name
  *
index 93218b10f72334ca3a22d3da9fa3a7019201d11c..cb04d2f3aab7a05fdf8233508573740579149ce4 100644 (file)
   <br />
 {include file="CRM/common/Tag.tpl" context="contactTab"}
 </div>
-
-{if $action eq 1 or $action eq 2 }
-<script type="text/javascript">
-  {* this function is called to change the color of selected row(s) *}
-  on_load_init_check("{$form.formName}");
-</script>
-{/if}