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

added 144p resolution to chapter images settings;

This commit is contained in:
Negulici-R. Barnabas 2022-11-13 16:24:18 +02:00 committed by Bill Thornton
parent 18ae1dc17f
commit 87833b0737

View file

@ -24,14 +24,15 @@ import alert from '../../components/alert';
})).val(config.UICulture);
page.querySelector('#txtChapterImageResolution').value = config.ChapterImageResolution;
$('#txtChapterImageResolution', page).html([
{name: "Match Source", value: "Match Source"},
{name: "Match Source", value: "MatchSource"},
{name: "2160p", value: "P2160"},
{name: "1440p", value: "P1440"},
{name: "1080p", value: "P1080"},
{name: "720p", value: "P720"},
{name: "480p", value: "P480"},
{name: "360p", value: "P360"},
{name: "240p", value: "P240"}
{name: "240p", value: "P240"},
{name: "144p", value: "P144"}
].map(function (resolution) {
return '<option value="' + resolution.value + '">' + resolution.name + '</option>';
})).val(config.ChapterImageResolution);