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 @@
+
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 @@
@@ -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);