top of page
bottom of page
import wixWindow from 'wix-window';
$w.onReady(() => {
const source = (wixWindow.location.query.source || "").toLowerCase();
const map = {
iosco: "Iosco Fair Video",
elkhart: "Elkhart Fair Video",
};
const lightboxName = map[source];
if (!lightboxName) return;
// Optional: remove the query string so it doesn't pop up again on refresh
const url = new URL(wixWindow.location.url);
url.searchParams.delete("source");
window.history.replaceState({}, "", url.pathname + url.search + url.hash);
wixWindow.openLightbox(lightboxName);
});