Revela-v4/header.js
2022-06-06 19:55:13 -05:00

8 lines
No EOL
231 B
JavaScript

function openNav() {
document.getElementById("sidenav").style.width = "300px";
}
/* Set the width of the side navigation to 0 */
function closeNav() {
document.getElementById("sidenav").style.width = "0%";
}