mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-12 11:15:43 +02:00
Series Name will now show in the examples if it is checked.
This commit is contained in:
parent
b6178c9eef
commit
45f697f150
@ -142,7 +142,7 @@
|
||||
|
||||
<script type="text/javascript">
|
||||
|
||||
$('#ShowName').live('change', function () { createExamples(); });
|
||||
$('#SeriesName').live('change', function () { createExamples(); });
|
||||
$('#EpisodeName').live('change', function () { createExamples(); });
|
||||
$('#ReplaceSpaces').live('change', function () { createExamples(); });
|
||||
$('#AppendQuality').live('change', function () { createExamples(); });
|
||||
@ -163,8 +163,8 @@
|
||||
if ($("#SeparatorStyle option:selected").val() == 1)
|
||||
separator = ' ';
|
||||
|
||||
if ($('#ShowName').attr('checked')) {
|
||||
result += 'Show Name';
|
||||
if ($('#SeriesName').attr('checked')) {
|
||||
result += 'Series Name';
|
||||
result += separator;
|
||||
}
|
||||
|
||||
@ -194,8 +194,8 @@
|
||||
if ($("#SeparatorStyle option:selected").val() == 1)
|
||||
separator = ' ';
|
||||
|
||||
if ($('#ShowName').attr('checked')) {
|
||||
result += 'Show Name';
|
||||
if ($('#SeriesName').attr('checked')) {
|
||||
result += 'Series Name';
|
||||
result += separator;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user