mirror of
https://github.com/Kakune55/PyGetGPT.git
synced 2025-05-07 02:39:24 +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;
|
|
} |