Skip to content

Instantly share code, notes, and snippets.

@masterk63
Last active July 22, 2017 13:11
Show Gist options
  • Save masterk63/3f0b59a0d0570ccbd384422da1ea2645 to your computer and use it in GitHub Desktop.
Save masterk63/3f0b59a0d0570ccbd384422da1ea2645 to your computer and use it in GitHub Desktop.
Evitar que sierra la pestaña
import { HostListener } from '@angular/core';
// export class hola {
@HostListener('window:beforeunload', ['$event'])
doSomething($event) {
if(true) $event.returnValue='Perderas la informacion!';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment