diff options
author | Jesús <heckyel@hyperbola.info> | 2020-12-30 16:17:48 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2020-12-30 16:52:26 -0500 |
commit | 1f4d7cc9586bc0fbb19936efe5dad32109dfb952 (patch) | |
tree | ec25c1c4f7fc36b2d83b332a7bdad011b84126d3 /youtube/static | |
parent | 056c3be3f2ab9a19d8b2c38396826aaad9d4081d (diff) | |
download | yt-local-1f4d7cc9586bc0fbb19936efe5dad32109dfb952.tar.lz yt-local-1f4d7cc9586bc0fbb19936efe5dad32109dfb952.tar.xz yt-local-1f4d7cc9586bc0fbb19936efe5dad32109dfb952.zip |
General theme: fix syntax W3C markup and add improve 'Published' date
Signed-off-by: Jesús <heckyel@hyperbola.info>
Diffstat (limited to 'youtube/static')
-rw-r--r-- | youtube/static/js/comments.js | 4 |
1 files changed, 2 insertions, 2 deletions
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")); }); }); }); |