summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--assets/js/player.js10
1 files changed, 6 insertions, 4 deletions
diff --git a/assets/js/player.js b/assets/js/player.js
index 4244f2e2..48533b3e 100644
--- a/assets/js/player.js
+++ b/assets/js/player.js
@@ -705,8 +705,10 @@ if (location.pathname.startsWith('/embed/')) {
cb.addChild(watch_on_invidious_button);
}
-// Save time during redirection on another instance
-const changeInstanceLink = document.querySelector('#watch-on-another-invidious-instance > a');
-if (changeInstanceLink) changeInstanceLink.addEventListener('click', function () {
- changeInstanceLink.href = addCurrentTimeToURL(changeInstanceLink.href);
+addEventListener('DOMContentLoaded', function () {
+ // Save time during redirection on another instance
+ const changeInstanceLink = document.querySelector('#watch-on-another-invidious-instance > a');
+ if (changeInstanceLink) changeInstanceLink.addEventListener('click', function () {
+ changeInstanceLink.href = addCurrentTimeToURL(changeInstanceLink.href);
+ });
});