mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
text changes
This commit is contained in:
parent
85ac0ffcd7
commit
19a3edd772
1 changed files with 8 additions and 2 deletions
|
@ -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();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue