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:
parent
736a8233a3
commit
97a67a7cf8
16 changed files with 397 additions and 117 deletions
|
@ -74,9 +74,11 @@
|
|||
|
||||
html += '<td>' + LiveTvHelpers.getDisplayTime(timer.StartDate) + '</td>';
|
||||
|
||||
var minutes = timer.DurationMs / 60000;
|
||||
var minutes = timer.RunTimeTicks / 600000000;
|
||||
|
||||
html += '<td class="tabletColumn">' + minutes.toFixed(0) + ' mins</td>';
|
||||
minutes = minutes || 1;
|
||||
|
||||
html += '<td class="tabletColumn">' + Math.round(minutes) + 'min</td>';
|
||||
|
||||
html += '<td class="tabletColumn">';
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue