Skip to content

Instantly share code, notes, and snippets.

@brachi-wernick
Last active February 25, 2019 10:46
Show Gist options
  • Save brachi-wernick/1bf3daea02673ab1da775bc7d6a474ce to your computer and use it in GitHub Desktop.
Save brachi-wernick/1bf3daea02673ab1da775bc7d6a474ce to your computer and use it in GitHub Desktop.
how to register window:beforeunload event in ng5 and show browser confirmation
@HostListener('window:beforeunload', ['$event'])
unloadNotification($event: any) {
if (this.hasUnsavedData()) {
$event.returnValue =true;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment