Ndarif ads (adsbygoogle = window.adsbygoogle || []).push({}); Ndarif ads (adsbygoogle = window.adsbygoogle || []).push({}); (function () { // Ideal time in seconds const idleDurationSecs = 15; // Redirect idle users to this URL const redirectUrl = 'https://articles.inezgane.store/ar/38'; // Variable to hold the timeout let idleTimeout; const resetIdleTimeout = function () { // Clears the existing timeout if (idleTimeout) clearTimeout(idleTimeout); // Set a new idle timeout to load the // redirectUrl after idleDurationSecs idleTimeout = setTimeout(() => location.href = redirectUrl, idleDurationSecs * 1500); }; // Init on page load resetIdleTimeout(); // Reset the idle timeout on any of // the events listed below ['click', 'touchstart', 'mousemove'] .forEach(evt => document.addEventListener( evt, resetIdleTimeout, false) ); })();