fredboniface.co.uk/js/navbar.js

7 lines
179 B
JavaScript
Raw Normal View History

2022-10-10 20:51:35 +01:00
function inflateSidebar() {
2022-10-10 21:04:21 +01:00
document.getElementById("sidebar").style.width = "150px";
2022-10-10 20:51:35 +01:00
}
function collapseSidebar() {
document.getElementById("sidebar").style.width = "0px";
2022-10-07 20:14:11 +01:00
}