mirror of https://github.com/jpanther/congo.git
6 lines
146 B
JavaScript
6 lines
146 B
JavaScript
|
/*
|
||
|
Closes the hamburger menu when a link is clicked.
|
||
|
*/
|
||
|
function close_menu() {
|
||
|
document.getElementById('menu-controller').checked=false
|
||
|
}
|