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

increase recording padding limits

This commit is contained in:
Luke Pulverenti 2013-12-22 16:11:32 -05:00
parent dc89e5fb88
commit 5a92d54d0c
7 changed files with 28 additions and 23 deletions

View file

@ -9,7 +9,6 @@
var context = 'livetv';
$('.itemName', page).html(program.Name);
$('.itemChannelNumber', page).html('Channel:&nbsp;&nbsp;&nbsp;<a href="livetvchannel.html?id=' + program.ChannelId + '">' + program.ChannelName + '</a>').trigger('create');
$('.itemEpisodeName', page).html(program.EpisodeTitle || '');
@ -24,6 +23,8 @@
$('.itemMiscInfo', page).html(LibraryBrowser.getMiscInfoHtml(program));
LiveTvHelpers.renderMiscProgramInfo($('.miscTvProgramInfo', page), program);
$('#chkNewOnly', page).checked(defaultTimer.RecordNewOnly).checkboxradio('refresh');
$('#chkAllChannels', page).checked(defaultTimer.RecordAnyChannel).checkboxradio('refresh');
$('#chkAnyTime', page).checked(defaultTimer.RecordAnyTime).checkboxradio('refresh');