Files
StockMan/StockMan.CORE/wwwroot/lib/menuCompression.js
T
2023-02-07 16:54:57 +01:00

18 lines
399 B
JavaScript

function openNav() {
document.getElementById("mySidebar").style.width = "18rem";
}
function closeNav() {
document.getElementById("mySidebar").style.width = "5rem";
}
function doShowChildren(id) {
document.getElementById(id).style.display = "block";
console.log(id);
}
function doHideChildren(id) {
document.getElementById(id).style.display = "none";
console.log(id);
}