mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
update next/previous buttons
This commit is contained in:
parent
e22622a6ac
commit
10567bd881
11 changed files with 70 additions and 55 deletions
|
@ -39,7 +39,29 @@
|
|||
html += '</td>';
|
||||
|
||||
html += '<td>';
|
||||
html += tuner.Status;
|
||||
|
||||
if (tuner.Status == 'RecordingTv') {
|
||||
if (tuner.ChannelName) {
|
||||
|
||||
html += '<a href="livetvchannel.html?id=' + tuner.ChannelId + '">Recording ' + tuner.ChannelName + '</a>';
|
||||
} else {
|
||||
|
||||
html += 'Recording';
|
||||
}
|
||||
}
|
||||
else if (tuner.Status == 'LiveTv') {
|
||||
|
||||
if (tuner.ChannelName) {
|
||||
|
||||
html += '<a href="livetvchannel.html?id=' + tuner.ChannelId + '">Watching ' + tuner.ChannelName + '</a>';
|
||||
} else {
|
||||
|
||||
html += 'Watching';
|
||||
}
|
||||
}
|
||||
else {
|
||||
html += tuner.Status;
|
||||
}
|
||||
html += '</td>';
|
||||
|
||||
html += '<td>';
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue