top of page
bottom of page
";
function tryInject() {
var path = window.location.pathname.toLowerCase();
if (path.indexOf('coaching') === -1) return;
if (!document.getElementById('viktor-coaching-overlay')) {
injectCoachingPage();
}
}
if (document.readyState === 'loading') {
document.addEventListener('DOMContentLoaded', tryInject);
} else {
tryInject();
}
setTimeout(tryInject, 300);
setTimeout(tryInject, 800);
setTimeout(tryInject, 1500);
setTimeout(tryInject, 3000);
window.addEventListener('popstate', function() {
var el = document.getElementById('viktor-coaching-overlay');
if (el) el.remove();
setTimeout(tryInject, 200);
});
})();