mirror of
https://github.com/Radarr/Radarr
synced 2024-12-25 17:27:59 +00:00
Series Name will now show in the examples if it is checked.
This commit is contained in:
parent
b6178c9eef
commit
45f697f150
1 changed files with 5 additions and 5 deletions
|
@ -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 a new issue