1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

update now playing screen

This commit is contained in:
Luke Pulverenti 2017-01-18 01:06:06 -05:00
parent 6820da0e4f
commit 3ead8a75b4
8 changed files with 46 additions and 19 deletions

View file

@ -540,13 +540,15 @@
});
}
function onPlaybackStopped(e, state) {
function onPlaybackStopped(e, stopInfo) {
console.log('remotecontrol event: ' + e.type);
var player = this;
updatePlayerState(dlg, {});
loadPlaylist(dlg);
if (!stopInfo.nextMediaType) {
updatePlayerState(dlg, {});
loadPlaylist(dlg);
}
}
function onPlayPauseStateChanged(e) {