mirror of
https://github.com/moparisthebest/wallabag
synced 2024-11-11 20:05:05 -05:00
6 lines
172 B
JavaScript
6 lines
172 B
JavaScript
|
$.fn.ready(function () {
|
||
|
$('#menu').on('click', function(){
|
||
|
$('body').toggleClass('menuOpen');
|
||
|
$('#menuContainer, #article_toolbar').toggleClass('open');
|
||
|
});
|
||
|
})
|