FCLT#55560 Floating footer niet tonen als er niks te doen is

svn path=/Website/branches/v2018.2/; revision=40047
This commit is contained in:
Alex Tiehuis
2018-11-30 09:28:45 +00:00
parent b63043c242
commit e56f97b0d6

View File

@@ -537,10 +537,10 @@ function updateTableHeaders(event) {
elems.footerOpacity = (elems.footerOpacity ||
$("input.multiselect", this).on("change", function() {
if ($("input.multiselect:checked").length) {
elems.$floatingFooterTd.css({ opacity: "" });
elems.$floatingFooterTd.css({ opacity: "", zIndex: "" });
}
else {
elems.$floatingFooterTd.css({ opacity: 0 });
elems.$floatingFooterTd.css({ opacity: 0, zIndex: -1 });
}
}));
elems.$fcltFrameHeader = (elems.$fcltFrameHeader || $("div.fcltframeheader"));