mirror of
https://github.com/moparisthebest/wallabag
synced 2024-12-11 02:02:19 -05:00
12 lines
354 B
JavaScript
12 lines
354 B
JavaScript
|
document.addEventListener('DOMContentLoaded', function() {
|
||
|
var menu = document.getElementById('menu');
|
||
|
|
||
|
menu.addEventListener('click', function(){
|
||
|
if(this.nextElementSibling.style.display === "block") {
|
||
|
this.nextElementSibling.style.display = "none";
|
||
|
}else {
|
||
|
this.nextElementSibling.style.display = "block";
|
||
|
}
|
||
|
|
||
|
});
|
||
|
});
|