Add video-js shortcode (#308)
All checks were successful
Website Prod/Test / Produktivumgebung (push) Successful in 18s
Website Prod/Test / Testumgebung (push) Successful in 12s
Website Dev / Entwicklungsumgebung (push) Successful in 17s

Reviewed-on: #308
This commit is contained in:
2024-12-27 13:35:32 +01:00
parent ef4356799e
commit ab73609db6
16 changed files with 123 additions and 34 deletions

View File

@ -69,6 +69,14 @@
});
});
// video-js
$(document).ready(function () {
document.querySelectorAll("video.video-js").forEach((video) => {
// @ts-ignore
videojs(video, {});
});
});
// filter
$(document).ready(function () {
if ($(".filter-container").length != 0) {