diff --git a/assets/js/modules/dom-modifier.js b/assets/js/modules/dom-modifier.js index 5eaad63..ade3571 100644 --- a/assets/js/modules/dom-modifier.js +++ b/assets/js/modules/dom-modifier.js @@ -120,6 +120,10 @@ export default class DomModifier { $('#news, #newspost').replaceWith(''); + if (comicDirective.parent().siblings('.small-2').length === 0) { + // There's no column after the comic: Insert our own + comicDirective.parent().after('
'); + } comicDirective.parent().siblings('.small-2').prepend(''); // Set a base (required by Angular's html5Mode) diff --git a/assets/templates/changeLog.html b/assets/templates/changeLog.html index fc508ff..0b406d0 100644 --- a/assets/templates/changeLog.html +++ b/assets/templates/changeLog.html @@ -36,7 +36,10 @@

NextVersion NextDate

  • --> - +

    0.6.1 December 8, 2019

    +

    0.6.0 March 7, 2019

    diff --git a/package-lock.json b/package-lock.json index 542ddca..a1dd67e 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "questionable-content-spa", - "version": "0.6.0", + "version": "0.6.1", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 87da27b..0e4afa7 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "questionable-content-spa", - "version": "0.6.0", + "version": "0.6.1", "description": "Questionable Content Single-Page Application with Extra Features", "main": "app.js", "scripts": {