Update index.html
This commit is contained in:
parent
961f3e297b
commit
84fc2f6284
18
index.html
18
index.html
|
|
@ -20066,10 +20066,11 @@ if (document.referrer && document.referrer.indexOf("r74n.") === -1) {
|
||||||
document.cookie = "R74nRef="+refdomain+";max-age=86400;path=/;domain=r74n.com";
|
document.cookie = "R74nRef="+refdomain+";max-age=86400;path=/;domain=r74n.com";
|
||||||
}
|
}
|
||||||
|
|
||||||
function loadPlaylight() {
|
function loadPlaylight(skipDialog=false) {
|
||||||
if (!isOnSite) { location.href = "https://r74n.com"; return }
|
if (!isOnSite && !skipDialog) { location.href = "https://r74n.com"; return }
|
||||||
if (typeof playlightSDK === "undefined") {
|
if (typeof playlightSDK === "undefined") {
|
||||||
document.getElementById("playlightButton").value = "Loading...";
|
let button = document.getElementById("playlightButton");
|
||||||
|
if (button) button.value = "Loading...";
|
||||||
document.head.insertAdjacentHTML("beforeend",`<link rel="stylesheet" href="https://sdk.playlight.dev/playlight-sdk.css">`);
|
document.head.insertAdjacentHTML("beforeend",`<link rel="stylesheet" href="https://sdk.playlight.dev/playlight-sdk.css">`);
|
||||||
let script = document.createElement("script");
|
let script = document.createElement("script");
|
||||||
script.setAttribute("type","module");
|
script.setAttribute("type","module");
|
||||||
|
|
@ -20084,19 +20085,22 @@ if (document.referrer && document.referrer.indexOf("r74n.") === -1) {
|
||||||
enabled: false
|
enabled: false
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
playlightSDK.setDiscovery(true);
|
${!skipDialog ? "playlightSDK.setDiscovery(true);" : ""}
|
||||||
document.getElementById("playlightButton").value = "More Games";
|
${!skipDialog ? "document.getElementById('playlightButton').value = 'More Games';" : "" }
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
console.error("Error loading the Playlight SDK:", error);
|
console.error("Error loading the Playlight SDK:", error);
|
||||||
document.getElementById("playlightButton").value = "Error...";
|
${!skipDialog ? "document.getElementById('playlightButton').value = 'Error...';" : "" }
|
||||||
}`;
|
}`;
|
||||||
document.head.appendChild(script);
|
document.head.appendChild(script);
|
||||||
}
|
}
|
||||||
else {
|
else if (!skipDialog) {
|
||||||
playlightSDK.setDiscovery(true);
|
playlightSDK.setDiscovery(true);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
if (urlParams.get("utm_source") === "playlight") {
|
||||||
|
addEventListener("load", function(){ loadPlaylight(true); });
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
<div id="bottomTopBoxColumns">
|
<div id="bottomTopBoxColumns">
|
||||||
<div>
|
<div>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue