Skip to content

Instantly share code, notes, and snippets.

@jrmedd
Created July 6, 2017 15:31
Show Gist options
  • Save jrmedd/08237cb0e27464ca7a9773546bf9a479 to your computer and use it in GitHub Desktop.
Save jrmedd/08237cb0e27464ca7a9773546bf9a479 to your computer and use it in GitHub Desktop.
var t;
function idleOut() {
window.location = 'index.html';
}
function resetTimer() {
console.log("Reset");
clearTimeout(t);
t = setTimeout(idleOut, 10000)
}
document.onmousemove = resetTimer;
document.onkeypress = resetTimer;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment