Skip to content

Instantly share code, notes, and snippets.

@muzfr7
Created May 20, 2017 07:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save muzfr7/6cd3cea9bd60059ccd8de0cfb55fee35 to your computer and use it in GitHub Desktop.
Save muzfr7/6cd3cea9bd60059ccd8de0cfb55fee35 to your computer and use it in GitHub Desktop.
Automatically logout user in 1 hour if he is not changing pages.
/*
* Automatically logout user in 1 hour on no activity
*/
setTimeout(function(){
window.open("http://www.yoursite.com/user/logout", "_self")
}, 1000*60*60); // logout in 1 hour
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment