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

use stream id's to close streams

This commit is contained in:
Luke Pulverenti 2015-03-19 12:16:33 -04:00
parent 8bf5fc899c
commit ad2a1b493d
4 changed files with 23 additions and 9 deletions

View file

@ -1456,6 +1456,19 @@
}
if (options.showProgramAirInfo) {
var date = parseISO8601Date(item.StartDate, { toLocal: true });
var text = item.StartDate ?
date.toLocaleString() :
'';
lines.push(text || ' ');
lines.push(item.ChannelName || ' ');
}
html += LibraryBrowser.getCardTextLines(lines, cssClass, !options.overlayText);
if (options.overlayText) {