0f9d59aaf9494808806d9df7741df15af0c2734c
vsmalladi
  Wed Mar 28 15:19:48 2012 -0700
Removed tissueSourceType otherTerms.html link as the term is not present on the page. Redmine #7100.
diff --git src/hg/js/utils.js src/hg/js/utils.js
index 6431307..90ccd4f 100644
--- src/hg/js/utils.js
+++ src/hg/js/utils.js
@@ -2008,31 +2008,31 @@
 
  //////////////////////////////
 //// findTracks functions ////
 /////////////////////////////
 var findTracks = {
 
     updateMdbHelp: function (index)
     {
     // update the metadata help links based on currently selected values.
     // If index == 0 we update all help items, otherwise we only update the one == index.
         var db = getDb();
         var disabled = {  // blackList
             'accession': 1, 'dataVersion': 1, 'dccAccession':    1, 'expId':           1, 'geoSampleAccession': 1, 
             'grant':     1, 'lab':         1, 'labExpId':        1, 'labVersion':      1, 'origAssembly':       1,
             'obtainedBy': 1, 'replicate':  1, 'setType':         1, 'softwareVersion': 1, 'subId':              1, 
-            'tableName':  1, 'view':       1
+            'tableName':  1, 'tissueSourceType': 1, 'view':            1
         }
         var expected = $('tr.mdbSelect').length;
         var ix=1;
         if (index!=0) {
             ix=index;
             expected=index;
         }
         for(;ix <= expected;ix++) {
             var helpLink = $("span#helpLink" + ix);
             if (helpLink.length > 0) {
                 var val = $("select[name='hgt_mdbVar" + ix + "']").val();  // NOTE must match METADATA_NAME_PREFIX in hg/hgTracks/searchTracks.c
                 var text = $("select[name='hgt_mdbVar" + ix + "'] option:selected").text();
                 helpLink.html("&nbsp;"); // Do not want this with length == 0 later!
                 if (typeof(disabled[val]) == 'undefined') {
                     var str;