3b525549f303d82e7ed569d733fdd7bc2ab712ee lrnassar Fri Oct 25 13:50:35 2024 -0700 Updating the message for maximum track load time, as well as changing the configure variable name and adding a descriptive mouseover. Refs #34638 diff --git src/hg/hgTracks/config.c src/hg/hgTracks/config.c index 42b7ab2..87c0abf 100644 --- src/hg/hgTracks/config.c +++ src/hg/hgTracks/config.c @@ -666,31 +666,33 @@ "\n" "// set the tooltip text size based on localStorage values\n" "let currTooltipSize = localStorage.getItem('tooltipTextSize');\n" "let browserTextSize = document.getElementsByName('textSize')[0];\n" "if (currTooltipSize === null) {\n" " localStorage.setItem('tooltipTextSize', browserTextSize.value);\n" "} else {\n" " updateSelectedTooltipSize(currTooltipSize);\n" "}" "document.getElementsByName('tooltipTextSize')[0].addEventListener('change', function(e) {\n" " updateSelectedTooltipSize(document.getElementsByName('tooltipTextSize')[0].selectedOptions[0].value);\n" "});\n" ); } -hPrintf("<TR><TD>Parallel load time out:"); +hPrintf("<TR><TD>Maximum track load time: "); +printInfoIcon("Maximum time in seconds the Genome Browser will wait for any individual track to " +"load. This limit can be hit by slower network connections, or densely populated tracks, especially in large regions."); hPrintf("<TD style=\"text-align: right\">"); hIntVar("parallelFetch.timeout", getParaLoadTimeout(), 3); hPrintf("<TD>seconds<TD></TR>"); themeDropDown(cart); hTableStart(); if (ideoTrack != NULL) { hPrintf("<TR><TD>"); hCheckBox("ideogram", cartUsualBoolean(cart, "ideogram", TRUE)); hPrintf("</TD><TD>"); hPrintf("Display chromosome ideogram above main graphic"); hPrintf("</TD></TR>\n"); }