mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
Enable remote "fullscreen" command
This is really only pseudo-fullscreen, as the js fullscreen API doesn't allow fullscreen without user interaction.
This commit is contained in:
parent
689ee461ed
commit
10e282094e
3 changed files with 48 additions and 5 deletions
|
@ -925,6 +925,9 @@ var Dashboard = {
|
|||
else if (msg.Data.Command === 'PreviousTrack') {
|
||||
MediaPlayer.previousTrack();
|
||||
}
|
||||
else if (msg.Data.Command === 'Fullscreen') {
|
||||
MediaPlayer.remoteFullscreen();
|
||||
}
|
||||
}
|
||||
else if (msg.MessageType === "SystemCommand") {
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue