mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
added sync original quality
This commit is contained in:
parent
b74ec2c441
commit
b5efcdeef4
2 changed files with 4 additions and 0 deletions
|
@ -119,6 +119,7 @@
|
|||
html += '<div>';
|
||||
html += '<label for="selectQuality">' + Globalize.translate('LabelQuality') + '</label>';
|
||||
html += '<select id="selectQuality" data-mini="true">';
|
||||
html += '<option value="Original">' + Globalize.translate('OptionOriginal') + '</option>';
|
||||
html += '<option value="High">' + Globalize.translate('OptionHigh') + '</option>';
|
||||
html += '<option value="Medium">' + Globalize.translate('OptionMedium') + '</option>';
|
||||
html += '<option value="Low">' + Globalize.translate('OptionLow') + '</option>';
|
||||
|
@ -176,6 +177,8 @@
|
|||
$(this).off("panelclose").remove();
|
||||
});
|
||||
|
||||
$('#selectQuality', elem).val('High').selectmenu('refresh');
|
||||
|
||||
$('form', elem).on('submit', function () {
|
||||
|
||||
submitJob(userId, options, this);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue