e9d19ac44bb91c8382ea2e0eed7f28799ebb032f jnavarr5 Thu Oct 2 13:28:26 2025 -0700 Updating the name of the button that hides all tracks in the group, refs #36354 diff --git src/hg/hgTracks/hgTracks.c src/hg/hgTracks/hgTracks.c index 321e7386e1c..e6ee78769c1 100644 --- src/hg/hgTracks/hgTracks.c +++ src/hg/hgTracks/hgTracks.c @@ -9705,31 +9705,31 @@ hPrintf("' href='../goldenPath/help/hgTrackHubHelp.html#hub.txt' " "style='color:#FFF; font-size: 13px;' target=_blank>No Info</a>"); } else { hPrintf("<a title='Link to documentation about this track hub, provided by the track hub authors (not UCSC). "); if (hub->email) hPrintf("The authors can be reached at %s", hub->email); hPrintf("' href='%s' " "style='color:#FFF; font-size: 13px;' target=_blank>Info</a>", hub->descriptionUrl); } hPrintf(" "); } hPrintf("<button type='button' class=\"hgtButtonHideGroup\" data-group-name=\"%s\" " - "title='Hide all tracks in this group'>Hide all</button> ", + "title='Hide all tracks in this group'>Hide group</button> ", group->name); safef(idText, sizeof idText, "%s_%d_disconn", hubName, disconCount); disconCount++; hPrintf("<input name=\"hubDisconnectButton\" id='%s'" " type=\"button\" value=\"Disconnect\">\n", idText); jsOnEventByIdF("click", idText, "document.disconnectHubForm.elements['hubId'].value='%s';" "document.disconnectHubForm.submit();return true;", hubName + strlen(hubTrackPrefix)); }