mirror of
https://github.com/iv-org/invidious.git
synced 2025-07-27 16:55:17 -04:00
Add missing semicolons, remove unused code
This commit is contained in:
parent
59d2738ecd
commit
136f322524
6 changed files with 6 additions and 10 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue