7147d370964619773bfd7a7761281240262aebe4
hiram
Tue Sep 10 15:05:22 2024 -0700
adding pop up help text refs #32596
diff --git src/hg/js/assemblySearch.js src/hg/js/assemblySearch.js
index fb82437..88c3cf6 100644
--- src/hg/js/assemblySearch.js
+++ src/hg/js/assemblySearch.js
@@ -247,38 +247,39 @@
searchInput.value = query;
document.getElementById('submitSearch').click();
}
}
document.getElementById("measureTiming").style.display = "none";
});
// refresh the thead columns in the specified table
function headerRefresh(tableHead) {
// clear existing content
tableHead.innerHTML = '';
// re-populate header row - the sortable system added a class to
// the last sorted column, need to rebuild the headerRow to get the
// header back to pristine condition for the next sort
var headerRow = '
';
- headerRow += '
View/ Request ⓘ"view" opens the genome browser for an existing assembly, "request" opens an assembly request form.
';
- headerRow += '
English common name ⓘEnglish common name
';
- headerRow += '
Scientific name ⓘscientific name
';
- headerRow += '
NCBI Assembly ⓘLinks to NCBI resource record or UCSC downloads for local UCSC assemblies
';
- headerRow += '
Year ⓘYear assembly was released.
';
- headerRow += '
GenArk clade ⓘclade specification as found in the GenArk system.
';
- headerRow += '
Description ⓘother meta data for this assembly.
';
- headerRow += '
Status ⓘvarious other status
';
+ let circleQuestion = '';
+ headerRow += '
View/ Request ⓘ"view" opens the genome browser for an existing assembly, "request" opens an assembly request form.
';
+ headerRow += '
English common name ⓘEnglish common name
';
+ headerRow += '
Scientific name ⓘscientific name
';
+ headerRow += '
NCBI Assembly ⓘLinks to NCBI resource record or UCSC downloads for local UCSC assemblies
';
+ headerRow += '
Year ⓘYear assembly was released.
';
+ headerRow += '
GenArk clade ⓘclade specification as found in the GenArk system.
';
+ headerRow += '
Description ⓘother meta data for this assembly.
';
+ headerRow += '
Status ⓘvarious other status
';
headerRow += '
';
tableHead.innerHTML = headerRow;
}
// call with visible true to make visible, false to hide
function advancedSearchVisible(visible) {
var advancedSearchButton = document.getElementById("advancedSearchButton");
var searchOptions = document.getElementById("advancedSearchOptions");
if (visible) {
searchOptions.style.display = "flex";
advancedSearchButton.textContent = "Hide advanced search options";
stateObject.advancedSearchVisible = true;
} else {
searchOptions.style.display = "none";
advancedSearchButton.textContent = "Show advanced search options";