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

add links to channel pages

This commit is contained in:
Luke Pulverenti 2013-11-29 15:10:31 -05:00
parent 65e079b86c
commit 663b5e93a1
2 changed files with 12 additions and 2 deletions

View file

@ -55,7 +55,12 @@
html += '</td>';
html += '<td>' + (timer.Name || '') + '</td>';
html += '<td>' + (timer.ChannelName || '') + '</td>';
html += '<td>';
if (timer.ChannelId) {
html += '<a href="livetvchannel.html?id=' + timer.ChannelId + '">' + timer.ChannelName + '</a>';
}
html += '</td>';
var startDate = timer.StartDate;