diff --git a/dashboard-ui/scripts/remotecontrol.js b/dashboard-ui/scripts/remotecontrol.js index 2703d65ff4..a5276e4d32 100644 --- a/dashboard-ui/scripts/remotecontrol.js +++ b/dashboard-ui/scripts/remotecontrol.js @@ -626,7 +626,7 @@ html += '
'; // Add controls here - html += '
'; + html += '
'; html += '
'; html += '
'; @@ -781,7 +781,13 @@ return s.Id == id; })[0]; - if (session && session.NowPlayingItem) { + if (!session) { + + $('.nothingPlaying', popup).hide(); + $('.nowPlaying', popup).hide(); + + } + else if (session.NowPlayingItem) { $('.nothingPlaying', popup).hide();