remaining 1.6.5 code

This commit is contained in:
Laetitia (O-01-67) 2022-11-17 09:24:30 -05:00 committed by GitHub
parent 327ae01123
commit d17f4c2764
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 1 deletions

View File

@ -506,6 +506,7 @@ function addKeyboardListeners() {
document.getElementById("underDiv").style.display = "block";
document.getElementById("pagetitle").style.display = "block";
document.getElementById("colorSelector").style.display = "block";
document.getElementById("bottomInfoBox").style.display = "block";
} else {
document.getElementById("underDiv").style.display = "none";
if (showingMenu) {
@ -513,6 +514,7 @@ function addKeyboardListeners() {
};
document.getElementById("pagetitle").style.display = "none";
document.getElementById("colorSelector").style.display = "none";
document.getElementById("bottomInfoBox").style.display = "none";
}
}
if (showingMenu) {
@ -849,4 +851,4 @@ You can also join our <a href="https://discord.gg/ejUc6YPQuS" target="_blank">Di
var firstDiv = document.getElementsByClassName("category")[0];
var firstElementButton = firstDiv.getElementsByClassName("elementButton")[0];
selectElement(firstElementButton.getAttribute("element"));
};
};