From b47bd8aebe13ab9251c89d914003864bbc07ce61 Mon Sep 17 00:00:00 2001 From: scooterpsu <3433982+scooterpsu@users.noreply.github.com> Date: Sun, 21 Mar 2021 21:23:26 -0400 Subject: [PATCH] Replace _ with a space Should make for cleaner listings, and you can make things alphabetically first with a leading _ --- comixology2/themeScript.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/comixology2/themeScript.js b/comixology2/themeScript.js index e40abc6..2afa277 100644 --- a/comixology2/themeScript.js +++ b/comixology2/themeScript.js @@ -1012,7 +1012,7 @@ function containerWrap(wrapType){ }else{ $('
').insertAfter($(this)); } - var titleText = seriesName; + var titleText = seriesName.replace('_',' '); if(seriesYear.length){ titleText += ' '+seriesYear; } @@ -1046,6 +1046,7 @@ function containerWrap(wrapType){ fullLabel = fullLabel.replace(' - ', ': '); } fullLabel = fullLabel.replace('_ ', ': '); + fullLabel = fullLabel.replace('_', ' '); if(showBookCount){ var issueCount = parseInt($(this).parent().parent().find('.numberblock').text()); var bookText;