From 1f84901ec5014b2669c4e4391d45ecba08c92ec5 Mon Sep 17 00:00:00 2001 From: Davide Arcuri Date: Tue, 13 Feb 2024 14:02:13 +0100 Subject: [PATCH] show/hide folders --- orochi/templates/website/index.html | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/orochi/templates/website/index.html b/orochi/templates/website/index.html index eef43416..6f36164f 100644 --- a/orochi/templates/website/index.html +++ b/orochi/templates/website/index.html @@ -479,6 +479,12 @@
History Log
}); }); + // FILTER FORM + $(document).on("click", ".nav-item.ms-2", function(){ + list = $(this).next(); + list.toggle(); + }); + // ADD FOLDER FORM $(document).on("click", "#new-folder", function () { $.ajax({