merge(#7): from imlonghao/fix-comma to sukkaw/master

feat/fix/umd
Sukka 7 years ago committed by GitHub
commit 61ae2a3742
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -501,10 +501,10 @@ function DisqusJS(config) {
}
})();
html += children.map((comment) => {
children.map((comment) => {
comment = processData(comment);
comment.nesting = nesting + 1;
return `<li data-id="comment-${comment.comment.id}">${renderPostItem(comment.comment)}${childrenComments(comment)}</li>`;
html += `<li data-id="comment-${comment.comment.id}">${renderPostItem(comment.comment)}${childrenComments(comment)}</li>`;
});
html += '</ul>';

Loading…
Cancel
Save