mirror of
https://github.com/laurent22/joplin.git
synced 2025-04-01 21:24:45 +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);
|
|
});
|
|
});
|