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 @@
"Galaxy or "
"our public "
"MySQL server. "
"To examine the biological function of your set through annotation "
"enrichments, send the data to "
"GREAT. "
"%s"
"Refer to the "
"Credits page for the list of "
"contributors and usage restrictions associated with these data. "
"Bulk download of track data is available from the "
"Sequence and Annotation Downloads page."
, getGenomeSpaceText()
);
-hPrintf(" Less...");
+hPrintf(" Less...");
// 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);