mirror of https://github.com/go-gitea/gitea
Git with a cup of tea, painless self-hosted git service
Mirror for internal git.with.parts use
https://git.with.parts
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
690 B
18 lines
690 B
2 years ago
|
export async function renderAsciicast() {
|
||
2 years ago
|
const els = document.querySelectorAll('.asciinema-player-container');
|
||
|
if (!els.length) return;
|
||
|
|
||
2 years ago
|
const [player] = await Promise.all([
|
||
|
import(/* webpackChunkName: "asciinema-player" */'asciinema-player'),
|
||
|
import(/* webpackChunkName: "asciinema-player" */'asciinema-player/dist/bundle/asciinema-player.css'),
|
||
|
]);
|
||
2 years ago
|
|
||
|
for (const el of els) {
|
||
|
player.create(el.getAttribute('data-asciinema-player-src'), el, {
|
||
|
// poster (a preview frame) to display until the playback is started.
|
||
|
// Set it to 1 hour (also means the end if the video is shorter) to make the preview frame show more.
|
||
|
poster: 'npt:1:0:0',
|
||
|
});
|
||
|
}
|
||
|
}
|