src.app.core.guards.page.ts Maven / Gradle / Ivy
import { HostListener } from '@angular/core';
export abstract class CanDeactivatePage {
abstract canDeactivatePage(): boolean;
@HostListener('window:beforeunload', ['$event'])
unloadNotification($event: any) {
if (!this.canDeactivatePage()) {
$event.returnValue = true;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy