1970-01-01 19 hours ago Doesn't work on desktop. Can't enter anything beyond 2 or 3 chars BigBalli 18 hours ago Google API was not matching url for permission. fixed, thanks! 1970-01-01 17 hours ago No fix seen on my end BigBalli 14 hours ago should be now, thx
BigBalli 18 hours ago Google API was not matching url for permission. fixed, thanks! 1970-01-01 17 hours ago No fix seen on my end BigBalli 14 hours ago should be now, thx
extraduder_ire 19 hours ago Why does this page redirect me to your linkedin page and re-open itself in a new tab when I click anywhere? That's not cool, dude.This code in /common.js is what does it; function handleLinkedInRedirect() { const oneWeek = 7 * 24 * 60 * 60 * 1000; const lastOpened = localStorage.getItem("linkedInOpened"); const isHomepage=location.href.match(/https:\/\/BigBalli\.com\/?$/i) if (isHomepage && !lastOpened || Date.now() - lastOpened > oneWeek) { document.addEventListener("click", function openLinkOnce(event) { const target = event.target; const url = target.tagName === "A" && target.href ? target.href : location.href; window.open(url, "_blank"); setTimeout(() => { location.href = "https://www.linkedin.com/in/giacomoballi/"; }, 1); localStorage.setItem("linkedInOpened", Date.now().toString()); document.removeEventListener("click", openLinkOnce); }); } } BigBalli 18 hours ago fudge, thx for spotting that. was imported from a different project. shouldn't be there. Also have an error in the conditional
BigBalli 18 hours ago fudge, thx for spotting that. was imported from a different project. shouldn't be there. Also have an error in the conditional
Doesn't work on desktop. Can't enter anything beyond 2 or 3 chars
Google API was not matching url for permission. fixed, thanks!
No fix seen on my end
should be now, thx
Why does this page redirect me to your linkedin page and re-open itself in a new tab when I click anywhere? That's not cool, dude.
This code in /common.js is what does it;
fudge, thx for spotting that. was imported from a different project. shouldn't be there. Also have an error in the conditional