mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
sync updates
This commit is contained in:
parent
1628e10830
commit
ea66c9a08c
24 changed files with 28 additions and 44 deletions
|
@ -986,19 +986,6 @@
|
|||
list.listview('refresh');
|
||||
};
|
||||
|
||||
self.onDeleteFormSubmitted = function () {
|
||||
|
||||
var page = $(this).parents('.page');
|
||||
|
||||
if ($('#fldChallengeValue', page).val() != $('#txtDeleteTest', page).val()) {
|
||||
Dashboard.alert(Globalize.translate('MessageValueNotCorrect'));
|
||||
} else {
|
||||
performDelete(page);
|
||||
}
|
||||
|
||||
return false;
|
||||
};
|
||||
|
||||
self.onIdentificationFormSubmitted = function () {
|
||||
|
||||
var page = $(this).parents('.page');
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
|
||||
$('.radioEncodingQuality', page).each(function() {
|
||||
|
||||
this.checked = config.MediaEncodingQuality == this.value;
|
||||
this.checked = config.EncodingQuality == this.value;
|
||||
|
||||
}).checkboxradio('refresh');
|
||||
|
||||
|
@ -64,7 +64,7 @@
|
|||
ApiClient.getNamedConfiguration("encoding").done(function (config) {
|
||||
|
||||
config.EnableDebugLogging = $('#chkEnableDebugEncodingLogging', form).checked();
|
||||
config.MediaEncodingQuality = $('.radioEncodingQuality:checked', form).val();
|
||||
config.EncodingQuality = $('.radioEncodingQuality:checked', form).val();
|
||||
config.DownMixAudioBoost = $('#txtDownMixAudioBoost', form).val();
|
||||
config.TranscodingTempPath = $('#txtTranscodingTempPath', form).val();
|
||||
|
||||
|
|
|
@ -379,6 +379,7 @@
|
|||
$(LibraryBrowser).trigger('itemdeleting', [itemId]);
|
||||
}
|
||||
});
|
||||
|
||||
}, 250);
|
||||
},
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue