blob: ef36f09c8c922ae17a90356e76d3e9c99dbf50f2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
function toggleDisplay() {
var leftnav=document.getElementById('leftnav');
var topbar=document.getElementsByClassName('topbar-expand')[0];
if (leftnav.classList.contains('show')) {
leftnav.classList.remove('show');
topbar.classList.remove('show');
setTimeout(() => {
leftnav.classList.add('hide-mobile');
}, 350);
} else {
leftnav.classList.add('show');
topbar.classList.add('show');
leftnav.classList.remove('hide-mobile');
}
}
|