Series Name will now show in the examples if it is checked.

This commit is contained in:
Mark McDowall 2011-06-22 16:47:16 -07:00
parent b6178c9eef
commit 45f697f150
1 changed files with 5 additions and 5 deletions

View File

@ -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;
}