Вместо использования плагина с ненужными килобайтами, все, что вам нужно, - это простая функция, подобная этой
(см. Пояснение в комментариях) :
<script>
(function() {
const idleDurationSecs = 60; // X number of seconds
const redirectUrl = '/logout'; // Redirect idle users to this URL
let idleTimeout; // variable to hold the timeout, do not modify
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 * 1000);
};
// 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)
);
})();
</script>
Вы хотите перенаправить на домашнюю страницу (обычно на /
), измените '/logout'
на '/'
:
const redirectUrl = '/'; // Redirect idle users to the root directory
Если вы хотите перезагрузить / обновить текущую страницу, просто измените'/logout'
в коде выше до location.href
:
const redirectUrl = location.href; // Redirect idle users to the same page