diff --git a/youtube/static/js/comments.js b/youtube/static/js/comments.js index ccf5e39..fdd089f 100644 --- a/youtube/static/js/comments.js +++ b/youtube/static/js/comments.js @@ -2,7 +2,7 @@ function onClickReplies(e) { var details = e.target.parentElement; // e.preventDefault(); console.log("loading replies .."); - doXhr(details.getAttribute("src") + "&slim=1", (html) => { + doXhr(details.getAttribute("data-src") + "&slim=1", (html) => { var div = details.querySelector(".comment_page"); div.innerHTML = html; }); @@ -14,7 +14,7 @@ window.addEventListener('DOMContentLoaded', function() { details.addEventListener('click', onClickReplies); details.addEventListener('auxclick', (e) => { if (e.target.parentElement !== details) return; - if (e.button == 1) window.open(details.getAttribute("src")); + if (e.button == 1) window.open(details.getAttribute("data-src")); }); }); }); diff --git a/youtube/templates/comments.html b/youtube/templates/comments.html index a128b44..ceb31b8 100644 --- a/youtube/templates/comments.html +++ b/youtube/templates/comments.html @@ -12,7 +12,7 @@ {{ comment['author'] }} - + {{ comment['time_published'] }} {% if timestamp_links %} @@ -24,7 +24,7 @@ {{ comment['likes_text'] if comment['like_count'] else ''}}