Add playsInline to video (#162065)

We want the video to play in the editor, not go fullscreen
This commit is contained in:
Matt Bierner 2022-09-27 14:28:22 -07:00 committed by GitHub
parent b4600dab29
commit ca635a3cdf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -30,6 +30,7 @@
if (settings.src !== null) {
video.src = settings.src;
}
video.playsInline = true;
video.controls = true;
function onLoaded() {