Photo Sphere Viewer
    Preparing search index...

    Interface Notification

    Notification component

    interface Notification {
        container: HTMLElement;
        parent: Viewer | AbstractComponent;
        viewer: Viewer;
        destroy(): void;
        hide(id?: string): void;
        isVisible(id?: string): boolean;
        show(config: string | NotificationConfig): void;
    }

    Hierarchy (View Summary)

    Index

    Properties

    container: HTMLElement

    Container element

    viewer: Viewer

    Reference to main controller

    Methods