Skip to content

Instantly share code, notes, and snippets.

@Gummiees
Created January 28, 2022 14:27
Show Gist options
  • Save Gummiees/6a72c46e17a0e881f508d2fec643af9a to your computer and use it in GitHub Desktop.
Save Gummiees/6a72c46e17a0e881f508d2fec643af9a to your computer and use it in GitHub Desktop.
Detect with Angular when the user sends the site to the background/foreground
@HostListener('document:visibilitychange', ['$event'])
visibilitychange() {
if (document.visibilityState === 'hidden') {
console.log('hidden');
} else {
console.log('visible');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment