Calendar: Fix hide/show of selected day contents

This commit is contained in:
Raphael Michel
2021-06-07 12:52:25 +02:00
parent 193407d819
commit 3e178a7293
3 changed files with 9 additions and 5 deletions

View File

@@ -321,7 +321,7 @@ $(function () {
var $tr = $(this).closest(".table-calendar").find(".selected-day");
$tr.find("td").html($(this).find(".events").html());
$tr.find("td").prepend($("<h3>").text($(this).attr("data-date")));
$tr.show();
$tr.removeClass("hidden");
});
$(".print-this-page").on("click", function (e) {