mirror of
https://github.com/Kakune55/PyGetGPT.git
synced 2025-06-27 23:38:03 +08:00
9 lines
296 B
JavaScript
9 lines
296 B
JavaScript
function openNav() {
|
|
document.getElementById("sidebar").style.left = "0";
|
|
document.getElementById("global-blur").style.opacity = 1;
|
|
}
|
|
|
|
function closeNav() {
|
|
document.getElementById("sidebar").style.left = "-200px";
|
|
document.getElementById("global-blur").style.opacity = 0;
|
|
} |