mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-12 08:54:00 +02:00
9 lines
260 B
JavaScript
9 lines
260 B
JavaScript
|
$(function () {
|
||
|
$("#open-menu-mobile").click(function () {
|
||
|
$("#menu-mobile").animate({ "margin-right": "0px" }, 300);
|
||
|
});
|
||
|
$("#close-menu-mobile").click(function () {
|
||
|
$("#menu-mobile").animate({ "margin-right": "-300px" }, 300);
|
||
|
});
|
||
|
});
|