window.prod_env = window.prod_env || window.location.href.indexOf("www.zenbusiness.com") > 0; if ( ! prod_env ) { console.log("STM - Custom Script running: ms-clarity-experiment-tracking"); } if ( window.localStorage.getItem("osano_accepted_all") !== "false" ) { window.addEventListener('load', () => { let attempts = 0; let clarityCheck = setInterval(function () { if (typeof window.clarity === 'function') { if (typeof ZenThirdPartyTracking.experimentData.featureFlagKey !== 'undefined') { window.clarity("set", "test", ZenThirdPartyTracking.experimentData.featureFlagKey); window.clarity("set", "testversion", ZenThirdPartyTracking.experimentData.featureFlagVariation); window.clarity("upgrade", "experiment"); clearInterval(clarityCheck); } } else { /* Stop trying after 10 secs */ attempts++ && attempts >= 10 && clearInterval(clarityCheck); } }, 1000); }); }