mirror of
https://github.com/moparisthebest/wallabag
synced 2025-02-17 07:30:09 -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";
|
||
|
}
|
||
|
|
||
|
});
|
||
|
});
|