2025-10-10 16:52:49 +02:00

7 lines
226 B
JavaScript

(function() {
document.querySelectorAll(".asciinema").forEach(function(element) {
AsciinemaPlayer.create(element.getAttribute("x-data-cast"),
element,
JSON.parse(element.getAttribute("x-data-opts")));
});
}());