Skip to content

Latest commit

 

History

History
34 lines (26 loc) · 707 Bytes

on-page-visible.decorator.md

File metadata and controls

34 lines (26 loc) · 707 Bytes

@OnPageVisible()

Decorate the method in the controller to run when the page is visible.

Example:

import { Component, OnDestroy, Inject, OnInit } from '@angular/core';
import { OnPageVisible } from "angular-page-visibility";

@Component( {
    selector : 'app-root',
    templateUrl : './app.component.html',
    styleUrls : [ './app.component.scss' ]
} )
export class AppComponent implements OnDestroy, OnInit {
    title = 'app';

    constructor() {
    }

    ngOnInit(): void {
    }

    @OnPageVisible()
    logWhenPageVisible(): void {
        console.log( 'OnPageVisible' );
        console.log( 'visible' );
    }

    ngOnDestroy(): void {
    }
}