Last active
May 12, 2018 14:02
-
-
Save ajayvarghese/4f33b516510aa7524bcc6ef6bdf41d22 to your computer and use it in GitHub Desktop.
Useful WebAPI's
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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