mirror of
https://github.com/wallabag/wallabag.git
synced 2025-01-06 23:15:25 +00:00
12 lines
No EOL
354 B
JavaScript
Executable file
12 lines
No EOL
354 B
JavaScript
Executable file
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";
|
|
}
|
|
|
|
});
|
|
}); |