mirror of
https://github.com/Microsoft/vscode
synced 2024-10-30 06:38:23 +00:00
Add playsInline to video (#162065)
We want the video to play in the editor, not go fullscreen
This commit is contained in:
parent
b4600dab29
commit
ca635a3cdf
1 changed files with 1 additions and 0 deletions
|
@ -30,6 +30,7 @@
|
|||
if (settings.src !== null) {
|
||||
video.src = settings.src;
|
||||
}
|
||||
video.playsInline = true;
|
||||
video.controls = true;
|
||||
|
||||
function onLoaded() {
|
||||
|
|
Loading…
Reference in a new issue