aboutsummaryrefslogtreecommitdiffhomepage
path: root/content.js
diff options
context:
space:
mode:
Diffstat (limited to 'content.js')
-rw-r--r--content.js14
1 files changed, 8 insertions, 6 deletions
diff --git a/content.js b/content.js
index 0951ab29..1d1c6c3b 100644
--- a/content.js
+++ b/content.js
@@ -655,12 +655,15 @@ function isSubmitButtonLoaded() {
return document.getElementById("submitButton") !== null;
}
-function changeStartSponsorButton(showStartSponsor, uploadButtonVisible) {
- if(!sponsorVideoID) return false;
- wait(isSubmitButtonLoaded).then(result => {
+async function changeStartSponsorButton(showStartSponsor, uploadButtonVisible) {
+ if(!sponsorVideoID) return false;
+
+ //make sure submit button is loaded
+ await wait(isSubmitButtonLoaded);
+
//if it isn't visible, there is no data
- let shouldHide = (uploadButtonVisible && !hideDeleteButtonPlayerControls) ? "unset":"none"
- document.getElementById("deleteButton").style.display = shouldHide;
+ let shouldHide = (uploadButtonVisible && !hideDeleteButtonPlayerControls) ? "unset" : "none"
+ document.getElementById("deleteButton").style.display = shouldHide;
if (showStartSponsor) {
showingStartSponsor = true;
@@ -681,7 +684,6 @@ function changeStartSponsorButton(showStartSponsor, uploadButtonVisible) {
//disable submit button
document.getElementById("submitButton").style.display = "none";
}
- });
}
function toggleStartSponsorButton() {