mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-18 03:18:19 -07:00
updated nuget
This commit is contained in:
parent
599320043f
commit
c8244de802
@ -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…
Reference in New Issue
Block a user