diff options
author | zrose584 <57181548+zrose584@users.noreply.github.com> | 2020-10-10 19:01:44 +0200 |
---|---|---|
committer | zrose584 <57181548+zrose584@users.noreply.github.com> | 2020-10-10 19:01:44 +0200 |
commit | 4844fa6d658bbe4964e906b44c3b459f9c4507c9 (patch) | |
tree | 4192133de9561474cd87ee743c41b41d8d2ff910 | |
parent | 6a7d0557e24eb8e1b738ca4bd2eae3eef8371288 (diff) | |
download | yt-local-4844fa6d658bbe4964e906b44c3b459f9c4507c9.tar.lz yt-local-4844fa6d658bbe4964e906b44c3b459f9c4507c9.tar.xz yt-local-4844fa6d658bbe4964e906b44c3b459f9c4507c9.zip |
add comments.js to /comments
-rw-r--r-- | youtube/templates/comments_page.html | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/youtube/templates/comments_page.html b/youtube/templates/comments_page.html index 2984f1e..269ac83 100644 --- a/youtube/templates/comments_page.html +++ b/youtube/templates/comments_page.html @@ -48,6 +48,11 @@ <a class="page-button more-comments" href="{{ comments_info['more_comments_url'] }}">More comments</a> {% endif %} </section> + + {% if settings.use_comments_js %} + <script src="/youtube.com/static/js/common.js"></script> + <script src="/youtube.com/static/js/comments.js"></script> + {% endif %} {% endblock main %} |