, // so the meta tag is already present. If not, we retry briefly. if (shouldLoadMixpanel()) { loadMixpanel(); return; } var tries = 0; var maxTries = 20; // ~1s total var timer = setInterval(function () { tries++; if (shouldLoadMixpanel()) { clearInterval(timer); loadMixpanel(); } else if (tries >= maxTries) { clearInterval(timer); } }, 50); })();

Latest