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

fixes #588 - Add option to use xbmc convention when saving images

This commit is contained in:
Luke Pulverenti 2013-10-15 11:29:19 -04:00
parent 17509afb4a
commit 04ca73a2b5
4 changed files with 22 additions and 0 deletions

View file

@ -43,6 +43,8 @@
$('#chkVIdeoImages', page).checked(config.EnableVideoImageExtraction).checkboxradio("refresh");
$('#selectImageSavingConvention', page).val(config.ImageSavingConvention).selectmenu("refresh");
Dashboard.hideLoadingMsg();
},
@ -53,6 +55,8 @@
ApiClient.getServerConfiguration().done(function (config) {
config.ImageSavingConvention = $('#selectImageSavingConvention', form).val();
config.MaxBackdrops = $('#txtNumbackdrops', form).val();
config.DownloadMovieImages.Art = $('#chkDownloadMovieArt', form).checked();

View file

@ -28,6 +28,7 @@
config.SaveLocalMeta = $('#chkSaveLocalMetadata', page).checked();
config.EnableVideoImageExtraction = $('#chkVIdeoImages', page).checked();
config.ImageSavingConvention = $('#selectImageSavingConvention', page).val();
ApiClient.updateServerConfiguration(config).done(function (result) {