Skip to content
This repository has been archived by the owner on Oct 14, 2022. It is now read-only.

Commit

Permalink
Replace _ with a space
Browse files Browse the repository at this point in the history
Should make for cleaner listings, and you can make things alphabetically first with a leading _
  • Loading branch information
scooterpsu committed Mar 22, 2021
1 parent 8590582 commit b47bd8a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion comixology2/themeScript.js
Original file line number Diff line number Diff line change
Expand Up @@ -1012,7 +1012,7 @@ function containerWrap(wrapType){
}else{
$('<h6 class="content-subtitle empty"></h6>').insertAfter($(this));
}
var titleText = seriesName;
var titleText = seriesName.replace('_',' ');
if(seriesYear.length){
titleText += ' '+seriesYear;
}
Expand Down Expand Up @@ -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;
Expand Down

0 comments on commit b47bd8a

Please sign in to comment.