|
|
|
@ -205,19 +205,18 @@ function get_reddit_comments() {
|
|
|
|
|
if (xhr.readyState == 4)
|
|
|
|
|
if (xhr.status == 200) {
|
|
|
|
|
comments = document.getElementById("comments");
|
|
|
|
|
comments.innerHTML = `
|
|
|
|
|
<div>
|
|
|
|
|
<h3>
|
|
|
|
|
<a href="javascript:void(0)" onclick="toggle_comments(this)">[ - ]</a>
|
|
|
|
|
{title}
|
|
|
|
|
</h3>
|
|
|
|
|
<b>
|
|
|
|
|
<a target="_blank" href="https://reddit.com{permalink}">View more comments on Reddit</a>
|
|
|
|
|
</b>
|
|
|
|
|
</div>
|
|
|
|
|
<div>{contentHtml}</div>
|
|
|
|
|
|
|
|
|
|
<hr>`.supplant({
|
|
|
|
|
comments.innerHTML = ' \
|
|
|
|
|
<div> \
|
|
|
|
|
<h3> \
|
|
|
|
|
<a href="javascript:void(0)" onclick="toggle_comments(this)">[ - ]</a> \
|
|
|
|
|
{title} \
|
|
|
|
|
</h3> \
|
|
|
|
|
<b> \
|
|
|
|
|
<a target="_blank" href="https://reddit.com{permalink}">View more comments on Reddit</a> \
|
|
|
|
|
</b> \
|
|
|
|
|
</div> \
|
|
|
|
|
<div>{contentHtml}</div> \
|
|
|
|
|
<hr>'.supplant({
|
|
|
|
|
title: xhr.response.title,
|
|
|
|
|
permalink: xhr.response.permalink,
|
|
|
|
|
contentHtml: xhr.response.contentHtml
|
|
|
|
@ -252,15 +251,15 @@ function get_youtube_comments() {
|
|
|
|
|
if (xhr.status == 200) {
|
|
|
|
|
comments = document.getElementById("comments");
|
|
|
|
|
if (xhr.response.commentCount > 0) {
|
|
|
|
|
comments.innerHTML = `
|
|
|
|
|
<div>
|
|
|
|
|
<h3>
|
|
|
|
|
<a href="javascript:void(0)" onclick="toggle_comments(this)">[ - ]</a>
|
|
|
|
|
View {commentCount} comments
|
|
|
|
|
</h3>
|
|
|
|
|
</div>
|
|
|
|
|
<div>{contentHtml}</div>
|
|
|
|
|
<hr>`.supplant({
|
|
|
|
|
comments.innerHTML = ' \
|
|
|
|
|
<div> \
|
|
|
|
|
<h3> \
|
|
|
|
|
<a href="javascript:void(0)" onclick="toggle_comments(this)">[ - ]</a> \
|
|
|
|
|
View {commentCount} comments \
|
|
|
|
|
</h3> \
|
|
|
|
|
</div> \
|
|
|
|
|
<div>{contentHtml}</div> \
|
|
|
|
|
<hr>'.supplant({
|
|
|
|
|
contentHtml: xhr.response.contentHtml,
|
|
|
|
|
commentCount: commaSeparateNumber(xhr.response.commentCount)
|
|
|
|
|
});
|
|
|
|
|