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

fix script error on now playing page

This commit is contained in:
Luke Pulverenti 2015-07-05 14:34:52 -04:00
parent 13a2268043
commit 75dba0b17f
9 changed files with 70 additions and 24 deletions

View file

@ -362,7 +362,7 @@
player.beginPlayerUpdates();
onStateChanged.call(player, e, state);
loadPlaylist($.mobile.activePage);
loadPlaylist($($.mobile.activePage)[0]);
}
function onPlaybackStopped(e, state) {
@ -372,7 +372,7 @@
player.endPlayerUpdates();
onStateChanged.call(player, e, {});
loadPlaylist($.mobile.activePage);
loadPlaylist($($.mobile.activePage)[0]);
}
function onStateChanged(e, state) {