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