mirror of
https://codeberg.org/tacerus/teddit.git
synced 2024-11-22 23:09:28 +01:00
scroll to infobar when viewing comment permalink #78
This commit is contained in:
parent
cd6750264b
commit
19a281ebe4
@ -54,7 +54,7 @@ module.exports = function() {
|
|||||||
<p>${comments.user_flair}</p>
|
<p>${comments.user_flair}</p>
|
||||||
<p class="ups">${ups}${controversial_span}</p>
|
<p class="ups">${ups}${controversial_span}</p>
|
||||||
<p class="created" title="${toUTCString(comments.created)}">
|
<p class="created" title="${toUTCString(comments.created)}">
|
||||||
<a href="${comments.permalink}">${timeDifference(comments.created)}${edited_span}</a>
|
<a href="${comments.permalink}#c">${timeDifference(comments.created)}${edited_span}</a>
|
||||||
</p>
|
</p>
|
||||||
<p class="stickied">${comments.stickied ? 'stickied comment' : ''}</p>
|
<p class="stickied">${comments.stickied ? 'stickied comment' : ''}</p>
|
||||||
</div>
|
</div>
|
||||||
@ -150,7 +150,7 @@ module.exports = function() {
|
|||||||
<p>${comment.user_flair}</p>
|
<p>${comment.user_flair}</p>
|
||||||
<p class="ups">${ups}${controversial_span}</p>
|
<p class="ups">${ups}${controversial_span}</p>
|
||||||
<p class="created" title="${toUTCString(comment.created)}">
|
<p class="created" title="${toUTCString(comment.created)}">
|
||||||
<a href="${comment.permalink}">${timeDifference(comment.created)}${edited_span}</a>
|
<a href="${comment.permalink}#c">${timeDifference(comment.created)}${edited_span}</a>
|
||||||
</p>
|
</p>
|
||||||
<p class="stickied">${comment.stickied ? 'stickied comment' : ''}</p>
|
<p class="stickied">${comment.stickied ? 'stickied comment' : ''}</p>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
Reference in New Issue
Block a user