7 lines
177 B
JavaScript
7 lines
177 B
JavaScript
function inflateSidebar() {
|
|
document.getElementById("sidebar").style.width = "25%";
|
|
}
|
|
|
|
function collapseSidebar() {
|
|
document.getElementById("sidebar").style.width = "0px";
|
|
} |