diff options
-rw-r--r-- | youtube/templates/watch.html | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/youtube/templates/watch.html b/youtube/templates/watch.html index c44e01d..86644ea 100644 --- a/youtube/templates/watch.html +++ b/youtube/templates/watch.html @@ -690,9 +690,11 @@ Reload without invidious (for usage of new identity button).</a> {% endif %} <script src="/youtube.com/static/js/common.js"></script> + <script src="/youtube.com/static/js/transcript-table.js"></script> {% if settings.use_video_hotkeys %} <script src="/youtube.com/static/js/hotkeys.js"></script> {% endif %} - <script src="/youtube.com/static/js/transcript-table.js"></script> - <script src="/youtube.com/static/js/comments.js"></script> + {% if settings.use_comments_js %} + <script src="/youtube.com/static/js/comments.js"></script> + {% endif %} {% endblock main %} |