mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
update local pin feature
This commit is contained in:
parent
cd9c4775c2
commit
b587424b5c
15 changed files with 152 additions and 13 deletions
|
@ -12,6 +12,13 @@
|
|||
|
||||
function initEpisodeForm(context, item) {
|
||||
|
||||
if (!item.ExtractedName || item.ExtractedName.length < 4) {
|
||||
context.querySelector('.fldRemember').classList.add('hide');
|
||||
}
|
||||
else {
|
||||
context.querySelector('.fldRemember').classList.remove('hide');
|
||||
}
|
||||
|
||||
$('.inputFile', context).html(item.OriginalFileName);
|
||||
|
||||
$('#txtSeason', context).val(item.ExtractedSeasonNumber);
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
<paper-input id="txtEndingEpisode" type="number" pattern="[0-9]*" min="0" label="${LabelEndingEpisodeNumber}"></paper-input>
|
||||
<div class="fieldDescription">${LabelEndingEpisodeNumberHelp}</div>
|
||||
</div>
|
||||
<div>
|
||||
<div class="fldRemember hide">
|
||||
<br />
|
||||
<paper-checkbox type="checkbox" id="chkRememberCorrection">${OptionRememberOrganizeCorrection}</paper-checkbox>
|
||||
</div>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue