Subevent: fix overflow for long lines in location

This commit is contained in:
Richard Schreiber
2021-09-08 13:22:57 +02:00
parent 673a38ddc8
commit 9a3b4f7863

View File

@@ -92,7 +92,7 @@ $(function () {
.attr("aria-controls", $content.attr('id'))
.attr("aria-expanded", "false");
$handler.on("click", function (ev) {
$content.html(original_html);
$content.html(original_html).removeClass("content");
$handler.attr("aria-expanded", "true").attr("aria-hidden", "true");
$handler.hide();
});