mirror of
https://github.com/Kingsrook/qqq.git
synced 2025-07-18 05:01:07 +00:00
Hide other-versions dropdown while page is loading
This commit is contained in:
@ -75,6 +75,12 @@
|
|||||||
collapseButton.click();
|
collapseButton.click();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const otherVersions = document.querySelector("#otherVersions");
|
||||||
|
if(otherVersions)
|
||||||
|
{
|
||||||
|
otherVersions.style.visibility = "visible";
|
||||||
|
}
|
||||||
|
|
||||||
const navLogo = document.querySelector("#navLogo");
|
const navLogo = document.querySelector("#navLogo");
|
||||||
if(navLogo)
|
if(navLogo)
|
||||||
{
|
{
|
||||||
|
@ -68,4 +68,9 @@ api-response
|
|||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
margin-right: auto;
|
margin-right: auto;
|
||||||
visibility: hidden;
|
visibility: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
#otherVersions
|
||||||
|
{
|
||||||
|
visibility: hidden;
|
||||||
}
|
}
|
Reference in New Issue
Block a user