1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-12-05 22:57:29 +02:00

Doc: Updated website template

This commit is contained in:
Laurent Cozic
2021-07-04 18:14:32 +01:00
parent 6c1a6b0a61
commit af15b8359b
255 changed files with 36564 additions and 41733 deletions

8
docs/js/script.js Normal file
View File

@@ -0,0 +1,8 @@
$(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);
});
});