1
0
mirror of https://github.com/jcwimer/wrestlingApp synced 2026-04-06 22:44:14 +00:00

Moved the tournament navbar to the bottom of the page and made site responsive. Fixed puma solid queue in development. Added a note about clobbering assets in the README. Fixed the ad blocker check due to turbolinks it had to be idempotent. Added migrations for all dbs in the rails-dev-db-create.sh script.

This commit is contained in:
2025-04-16 16:19:29 -04:00
parent 6e61a7245a
commit ed7186e5ce
14 changed files with 91 additions and 11011 deletions

View File

@@ -14,21 +14,37 @@
<p>We've detected that you have an ad blocker enabled! Please consider disabling it for <strong>wrestlingdev.com</strong>. This site is free for users and supported by ads. Ad blockers also block performance monitoring that help us with user experience.</p>
</div>
<script>
let fakeAd = document.createElement("div");
fakeAd.className = "textads banner-ads banner_ads ad-unit ad-zone ad-space adsbox"
// Only run ad blocker check if fakeAd hasn't been checked yet in this context
if (typeof window.adBlockerCheckExecuted === 'undefined') {
let fakeAd = document.createElement("div");
fakeAd.className = "textads banner-ads banner_ads ad-unit ad-zone ad-space adsbox"
fakeAd.style.height = "1px"
fakeAd.style.position = "absolute"; // Prevent potential layout shift
fakeAd.style.top = "-10px";
fakeAd.style.left = "-10px";
fakeAd.style.height = "1px"
document.body.appendChild(fakeAd)
let x_width = fakeAd.offsetHeight;
let msg = document.getElementById("msg")
document.body.appendChild(fakeAd)
if(x_width){
console.log("No AdBlocker Detected")
}else{
console.log("AdBlocker detected")
document.getElementById("blocked_message").style.display = 'block';
}
// Use requestAnimationFrame to ensure the element is rendered before checking offsetHeight
requestAnimationFrame(() => {
let x_width = fakeAd.offsetHeight;
// let msg = document.getElementById("msg") // msg variable wasn't used
if(x_width){
console.log("No AdBlocker Detected")
}else{
console.log("AdBlocker detected")
const blockedMessage = document.getElementById("blocked_message");
if (blockedMessage) {
blockedMessage.style.display = 'block';
}
}
// Clean up the fake element
document.body.removeChild(fakeAd);
});
// Mark check as executed
window.adBlockerCheckExecuted = true;
}
</script>