aboutsummaryrefslogtreecommitdiff
path: root/public/js/Navigator.js
blob: 6fd7fc8aba5e51bf226f3213ca7de9f2f50e6c0d (plain)
1
2
3
4
5
6
7
8
9
10
11
/* main navigator functions */

window.openNav = function openNav() {
    document.getElementById("side-navbar").style.width = "150px";
    document.getElementById("main").style.marginLeft = "-148px";
}

window.closeNav = function closeNav() {
    document.getElementById("side-navbar").style.width = "0";
    document.getElementById("main").style.marginLeft = "0";
}