We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9531cc4 commit af39951Copy full SHA for af39951
holy-bhagavad-gita.org/index.js
@@ -19,14 +19,6 @@ b.style.backgroundImage = "none";
19
}
20
});
21
22
-/**
23
- * remove superflous footer text
24
- */
25
-const copy = document.querySelector(".screen.footer #copyright:nth-of-type(3)");
26
-if (copy) {
27
- copy.remove();
28
-}
29
-
30
/**
31
* automatically move to next verse
32
* after audio ends
@@ -55,3 +47,11 @@ if (
55
47
) {
56
48
document.querySelector("aside").remove();
57
49
50
+
51
+function removeAd(selector) {
52
+ const ad = document.querySelector(selector);
53
+ if (ad) ad.remove();
54
+}
+removeAd("img[src='/public/images/upi_bg.png']");
+removeAd(".copyrightwarning");
0 commit comments