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

text changes

This commit is contained in:
Luke Pulverenti 2013-07-11 16:46:18 -04:00
parent 85ac0ffcd7
commit 19a3edd772

View file

@ -626,7 +626,7 @@
html += '<div class="sessionsPopupContent">';
// Add controls here
html += '<div><label for="selectSession">Select session</label>';
html += '<div><label for="selectSession">Select session to control</label>';
html += '<select id="selectSession" name="selectSession" data-mini="true"></select></div>';
html += '</div>';
@ -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();