Skip to content

Instantly share code, notes, and snippets.

@ajayvarghese
Last active May 12, 2018 14:02
Show Gist options
  • Save ajayvarghese/4f33b516510aa7524bcc6ef6bdf41d22 to your computer and use it in GitHub Desktop.
Save ajayvarghese/4f33b516510aa7524bcc6ef6bdf41d22 to your computer and use it in GitHub Desktop.
Useful WebAPI's
window.addEventListener('visibilitychange', () => {
switch(document.visibilityState) {
case 'prerender':
console.log('Tab is pre-rendering');
break;
case 'hidden':
console.log('Tab is hidden');
break;
case 'visible':
console.log('Tab is focused');
break;
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment