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

live tv updates

This commit is contained in:
Luke Pulverenti 2013-12-17 01:08:06 -05:00
parent 60bcd69fd3
commit f030db9841
8 changed files with 62 additions and 45 deletions

View file

@ -78,7 +78,19 @@
html += '<td class="tabletColumn">' + minutes.toFixed(0) + ' mins</td>';
html += '<td class="tabletColumn">' + (timer.Status || '') + '</td>';
html += '<td class="tabletColumn">';
if (timer.Status == 'ConflictedNotOk' || timer.Status == 'Error') {
html += '<span style="color:red;">';
html += timer.Status;
html += '</span>';
} else {
html += timer.Status;
}
html += '</td>';
html += '<td class="desktopColumn">';