mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
updated nuget
This commit is contained in:
parent
599320043f
commit
c8244de802
1 changed files with 12 additions and 1 deletions
|
@ -29,6 +29,7 @@
|
|||
|
||||
html += '<tr>';
|
||||
|
||||
html += '<th> </th>';
|
||||
html += '<th>Date</th>';
|
||||
html += '<th>Start</th>';
|
||||
html += '<th>End</th>';
|
||||
|
@ -43,6 +44,16 @@
|
|||
|
||||
html += '<tr>';
|
||||
|
||||
html += '<td>';
|
||||
|
||||
if (program.recordingId) {
|
||||
html += '<button type="button" data-icon="delete" data-inline="true" data-mini="true" data-iconpos="notext">Cancel</button>';
|
||||
} else {
|
||||
html += '<button type="button" data-icon="star" data-inline="true" data-mini="true" data-theme="b" data-iconpos="notext">Record</button>';
|
||||
}
|
||||
|
||||
html += '</td>';
|
||||
|
||||
var startDate = program.StartDate;
|
||||
|
||||
try {
|
||||
|
@ -67,7 +78,7 @@
|
|||
|
||||
html += '</table></div>';
|
||||
|
||||
$('#programList', page).html(html);
|
||||
$('#programList', page).html(html).trigger('create');
|
||||
}
|
||||
|
||||
function loadPrograms(page) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue