JillElaine / jquery-idleTimeout

Idle activity timeout and logout redirect for jQuery for multiple windows & tabs
Other
73 stars 79 forks source link

Time remainig over and not redirect: setTimeout changed to setInterval #17

Closed marcellobrazil closed 9 years ago

marcellobrazil commented 9 years ago
startDialogTimer = function () {
    dialogTimer = setInterval(function () {checkDialogTimeout();}, (currentConfig.idleCheckHeartbeat * 1000));
};

stopDialogTimer = function () {
    clearInterval(dialogTimer);
    clearInterval(remainingTimer);
};
JillElaine commented 9 years ago

Bad bug on my part. Thank you for catching this. It is now fixed.

marcellobrazil commented 9 years ago

Welcome Jill.