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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue