Hide other-versions dropdown while page is loading

This commit is contained in:
2023-05-04 15:42:31 -05:00
parent 05a0e13a44
commit a0e45b983f
2 changed files with 11 additions and 0 deletions

View File

@ -75,6 +75,12 @@
collapseButton.click();
}
const otherVersions = document.querySelector("#otherVersions");
if(otherVersions)
{
otherVersions.style.visibility = "visible";
}
const navLogo = document.querySelector("#navLogo");
if(navLogo)
{

View File

@ -69,3 +69,8 @@ api-response
margin-right: auto;
visibility: hidden;
}
#otherVersions
{
visibility: hidden;
}