A callback method that is invoked immediately after
Angular has completed initialization of a component's view.
It is invoked only once when the view is instantiated.
Returns void
ngOnDestroy
ngOnDestroy(): void
A callback method that performs custom clean-up, invoked immediately
before a directive, pipe, or service instance is destroyed.
Returns void
onFileChange
onFileChange($event): void
Parameters
$event: any
Returns void
onHidden
onHidden(): void
Returns void
removeScreenshot
removeScreenshot(index): void
Parameters
index: number
Returns void
selectFileForUpload
selectFileForUpload(input): void
Parameters
input: HTMLInputElement
Returns void
sendBugReport
sendBugReport(): void
Returns void
Protectedsubscribe
subscribe<R, E>(observable, observerOrNext?, tag?): number
Protected
subscribes an observable that is internally added to the subscription manager and destroyed automatically on ngDestroy
A callback method that is invoked immediately after Angular has completed initialization of a component's view. It is invoked only once when the view is instantiated.