From 2e2b831eaed0b2c1ed78594ee7147d54806fcd0f Mon Sep 17 00:00:00 2001 From: goodtube4u Date: Tue, 1 Jul 2025 17:30:04 +1000 Subject: [PATCH] Updates --- goodtube.js | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/goodtube.js b/goodtube.js index 8917f14..f3a7c1e 100644 --- a/goodtube.js +++ b/goodtube.js @@ -481,10 +481,8 @@ } } - // Call this function again on next draw frame - window.requestAnimationFrame(function () { - goodTube_player_positionAndSize(); - }); + // Call this function again on next draw frame (this must be done with setTimeout - it fixes a known major issue many users have where the function won't fire with window.requestAnimationFrame) + setTimeout(goodTube_player_positionAndSize, 0); } // Load a video @@ -1207,6 +1205,9 @@
FAQs
+ How can I share this with friends?
+ You can send them this link. It has all of the install instructions.
+
Do I need to manually update this?
Nope, updates are pushed to you automatically so you don't have to do anything to use the latest version.

@@ -1228,7 +1229,7 @@
I am dedicated to helping every single person get this working. Everyone is important and if you have any problems at all, please let me know. I will respond and do my best to help!
- +
@@ -1504,6 +1505,11 @@ line-height: 130%; } + .goodTube_modal .goodTube_text a { + color: #e84a82; + text-decoration: underline; + } + .goodTube_modal .goodTube_report { } @@ -1545,7 +1551,7 @@ .goodTube_modal .goodTube_report textarea { margin-bottom: 16px; - height: 94px; + height: 128px; } `; document.head.appendChild(style);