Only show close button on in page popup

This commit is contained in:
Ajay
2022-06-02 21:34:02 -04:00
parent 6b584f2111
commit 6202a4d0a3
2 changed files with 5 additions and 1 deletions

View File

@@ -11,7 +11,7 @@
<body id="sponsorBlockPopupBody" style="visibility: hidden">
<div id="sponsorblockPopup" class="sponsorBlockPageBody sb-preload">
<button id="sbCloseButton" title="__MSG_closePopup__" class="sbCloseButton">
<button id="sbCloseButton" title="__MSG_closePopup__" class="sbCloseButton hidden">
<img src="icons/close.png" width="15" height="15">
</button>

View File

@@ -140,6 +140,10 @@ async function runThePopup(messageListener?: MessageListener): Promise<void> {
});
});
if (window !== window.top) {
PageElements.sbCloseButton.classList.remove("hidden");
}
// Hide donate button if wanted (Safari, or user choice)
if (!showDonationLink()) {
PageElements.sbDonate.style.display = "none";