1
Fork 0

Use playsInline instead of playsinline.

Apparently the field has a different name than the HTML attribute.
This commit is contained in:
Juliusz Chroboczek 2022-01-25 01:28:18 +01:00
parent 29b4734bc4
commit 6bb1ed7ab7
1 changed files with 1 additions and 2 deletions

View File

@ -1613,8 +1613,7 @@ async function setMedia(c, isUp, mirror, video) {
media.classList.add('media'); media.classList.add('media');
media.autoplay = true; media.autoplay = true;
/** @ts-ignore */ media.playsInline = true;
media.playsinline = true;
media.id = 'media-' + c.localId; media.id = 'media-' + c.localId;
div.appendChild(media); div.appendChild(media);
addCustomControls(media, div, c, !!video); addCustomControls(media, div, c, !!video);