Add missing semicolons, remove unused code

This commit is contained in:
ChunkyProgrammer 2024-08-13 12:49:04 -04:00
parent 59d2738ecd
commit 136f322524
6 changed files with 6 additions and 10 deletions

View file

@ -12,7 +12,7 @@ function updateReplyLinks() {
replyLink.removeAttribute("target");
});
}
updateReplyLinks()
updateReplyLinks();
function get_youtube_replies(target) {
var continuation = target.getAttribute('data-continuation');
@ -33,7 +33,7 @@ function get_youtube_replies(target) {
body = body.parentNode.parentNode;
body.removeChild(body.lastElementChild);
body.insertAdjacentHTML('beforeend', response.contentHtml);
updateReplyLinks()
updateReplyLinks();
},
onNon200: function (xhr) {
body.innerHTML = fallback;