Skip to content

Commit

Permalink
Using disablePictureInPicture="true"
Browse files Browse the repository at this point in the history
  • Loading branch information
mdevaev committed Oct 30, 2024
1 parent 47778bc commit 936cc21
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion web/kvm/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -858,7 +858,7 @@
<div id="stream-info"></div>
<button class="window-button-exit-full-tab">&#9660;</button>
<div class="stream-box-offline" id="stream-box"><img id="stream-image" src="/share/png/blank-stream.png">
<video class="hidden" id="stream-video" autoplay playsinline muted></video>
<video class="hidden" id="stream-video" disablePictureInPicture="true" autoplay playsinline muted></video>
<div id="stream-fullscreen-active"></div>
</div>
<div class="keypad" id="stream-mouse-buttons" align="center">
Expand Down
2 changes: 1 addition & 1 deletion web/kvm/window-stream.pug
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ div(id="stream-window" class="window window-resizable")
button(class="window-button-exit-full-tab") &#9660;
div(id="stream-box" class="stream-box-offline")
img(id="stream-image" src=`${png_dir}/blank-stream.png`)
video(id="stream-video" class="hidden" autoplay playsinline muted)
video(id="stream-video" class="hidden" disablePictureInPicture="true" autoplay playsinline muted)
div(id="stream-fullscreen-active")

div(id="stream-mouse-buttons" class="keypad" align="center")
Expand Down

0 comments on commit 936cc21

Please sign in to comment.