related #1986 add comments

This commit is contained in:
HWFord
2023-09-20 16:14:26 +02:00
parent 236c997d6d
commit e07f7d3868
+2 -1
View File
@@ -7,16 +7,17 @@ $(document).ready(function () {
$(this).find(".validate-text").hide();
});
// If we open another filter, hide all other dropdowns expect the one just opened
$("div.filter").on("click", function () {
$(this).siblings().removeClass("show-filter-dropdown");
$(this).siblings().children("div.filter-form").css('display','none');
});
// If we open the choose filters modal hide all filter forms if any open
$("div.filter-manager").on("click", function () {
$('div.filter').children("div.filter-form").css('display','none');
});
global_params.search_id = search_id;
if (!global_params.fields) {