6f7f3db967507b384974021fb8cfac28528b4743 kate Wed May 19 10:23:38 2021 -0700 Fix errant HTML tag reported by ChrisL. refs #27408 diff --git src/hg/hgTables/mainPage.c src/hg/hgTables/mainPage.c index 073f666..0b46f1d 100644 --- src/hg/hgTables/mainPage.c +++ src/hg/hgTables/mainPage.c @@ -1023,31 +1023,31 @@ "<A HREF=\""GALAXY_URL_BASE"\" target=_BLANK>Galaxy</A> or " "our <A HREF=\"../goldenPath/help/mysql.html\">public " "MySQL server</A>. " "To examine the biological function of your set through annotation " "enrichments, send the data to " "<A HREF=\"http://great.stanford.edu\" target=_BLANK>GREAT</A>. " "%s" "Refer to the " "<A HREF=\"../goldenPath/credits.html\">Credits</A> page for the list of " "contributors and usage restrictions associated with these data. " "Bulk download of track data is available from the " "<A HREF=\"http://hgdownload.soe.ucsc.edu/downloads.html\"" ">Sequence and Annotation Downloads</A> page.</span>" , getGenomeSpaceText() ); -hPrintf(" <span id='tbHelpLess' class='blueLink' style='display:none'>Less...</a></span>"); +hPrintf(" <span id='tbHelpLess' class='blueLink' style='display:none'>Less...</span>"); // Show more or less intro text char jsText[1024]; safef(jsText, sizeof jsText, "$('#tbHelpMore').hide();" "$('#tbHelp').show();" "$('#tbHelpLess').show();" ); jsOnEventById("click", "tbHelpMore", jsText); safef(jsText, sizeof jsText, "$('#tbHelpMore').show();" "$('#tbHelp').hide();" "$('#tbHelpLess').hide();" ); jsOnEventById("click", "tbHelpLess", jsText);