mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
bring back source type
This commit is contained in:
parent
12ae11bcfc
commit
7eac5f192e
2 changed files with 6 additions and 5 deletions
|
@ -66,10 +66,6 @@
|
|||
<label for="txtSortName">Sort name:</label>
|
||||
<input type="text" id="txtSortName" name="txtSortName" data-mini="true" />
|
||||
</div>
|
||||
<div data-role="fieldcontain" id="fldSourceType" style="display: none;">
|
||||
<label for="txtDisplayMediaType">Source type:</label>
|
||||
<input type="text" id="txtDisplayMediaType" name="txtDisplayMediaType" data-mini="true" />
|
||||
</div>
|
||||
<div data-role="fieldcontain" id="fldDateAdded" style="display: none;">
|
||||
<label for="txtDateAdded">Date added:</label>
|
||||
<input type="date" id="txtDateAdded" name="txtDateAdded" data-mini="true" />
|
||||
|
@ -335,6 +331,10 @@
|
|||
<div data-role="collapsible" data-mini="true" id="collapsibleDisplaySettings" style="display: none;">
|
||||
<h3>Display Settings</h3>
|
||||
<div>
|
||||
<div data-role="fieldcontain" id="fldSourceType" style="display: none;" class="fldDisplaySetting">
|
||||
<label for="txtDisplayMediaType">Treat image as:</label>
|
||||
<input type="text" id="txtDisplayMediaType" name="txtDisplayMediaType" data-mini="true" />
|
||||
</div>
|
||||
<div data-role="fieldcontain" id="fldDisplaySpecialsInline" class="fldDisplaySetting">
|
||||
<label for="chkDisplaySpecialsInline">Display specials within seasons they aired in.</label>
|
||||
<input data-mini="true" type="checkbox" name="chkDisplaySpecialsInline" id="chkDisplaySpecialsInline" />
|
||||
|
|
|
@ -735,7 +735,7 @@
|
|||
}
|
||||
|
||||
if (item.MediaType == "Video" && item.Type != "Channel") {
|
||||
$('#fldSourceType', page).hide();
|
||||
$('#fldSourceType', page).show();
|
||||
} else {
|
||||
$('#fldSourceType', page).hide();
|
||||
}
|
||||
|
@ -1200,6 +1200,7 @@
|
|||
Gamesdb: $('#txtGamesDb', form).val(),
|
||||
Imdb: $('#txtImdb', form).val(),
|
||||
Tmdb: $('#txtTmdb', form).val(),
|
||||
TmdbCollection: $('#txtTmdbCollection', form).val(),
|
||||
Tvdb: $('#txtTvdb', form).val(),
|
||||
Tvcom: $('#txtTvCom', form).val(),
|
||||
Musicbrainz: $('#txtMusicBrainz', form).val(),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue