Skip to content

Commit 4d98ddb

Browse files
committed
Merge branch 'release/0.6.1'
2 parents 7a9b2da + d8fe68f commit 4d98ddb

File tree

4 files changed

+10
-3
lines changed

4 files changed

+10
-3
lines changed

assets/js/modules/dom-modifier.js

+4
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,10 @@ export default class DomModifier {
120120

121121
$('#news, #newspost').replaceWith('<qc-news></qc-news>');
122122

123+
if (comicDirective.parent().siblings('.small-2').length === 0) {
124+
// There's no column after the comic: Insert our own
125+
comicDirective.parent().after('<div class="small-2 medium-expand column"></div>');
126+
}
123127
comicDirective.parent().siblings('.small-2').prepend('<qc-extra></qc-extra>');
124128

125129
// Set a base (required by Angular's html5Mode)

assets/templates/changeLog.html

+4-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,10 @@ <h4>NextVersion <small>NextDate</small></h4>
3636
<li></li>
3737
</ul>
3838
-->
39-
39+
<h4>0.6.1 <small>December 8, 2019</small></h4>
40+
<ul>
41+
<li>Fix missing sidebar when loading a comic directly by number in URL.</li>
42+
</ul>
4043
<h4>0.6.0 <small>March 7, 2019</small></h4>
4144
<div class="change-log-entry">
4245
<p class="developer-message">

package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "questionable-content-spa",
3-
"version": "0.6.0",
3+
"version": "0.6.1",
44
"description": "Questionable Content Single-Page Application with Extra Features",
55
"main": "app.js",
66
"scripts": {

0 commit comments

Comments
 (0)