An Application displaying documentation for the Pathfinder 1e system within Foundry.

Hierarchy

  • Application<ApplicationOptions, this>
    • HelpBrowserPF

Constructors

Properties

_currentPage: any
DEFAULT_OPTIONS: {
    actions: {
        back: (() => void);
        forward: (() => void);
        home: (() => void);
    };
    classes: string[];
    id: string;
    position: {
        height: number;
        width: number;
    };
    window: {
        minimizable: boolean;
        resizable: boolean;
        title: string;
    };
} = ...

Type declaration

  • actions: {
        back: (() => void);
        forward: (() => void);
        home: (() => void);
    }
    • back: (() => void)
        • (): void
        • Go back one page in history.

          Returns void

    • forward: (() => void)
        • (): void
        • Go forward one page in history.

          Returns void

    • home: (() => void)
        • (): void
        • Returns void

  • classes: string[]
  • id: string
  • position: {
        height: number;
        width: number;
    }
    • height: number
    • width: number
  • window: {
        minimizable: boolean;
        resizable: boolean;
        title: string;
    }
    • minimizable: boolean
    • resizable: boolean
    • title: string
PARTS: {
    form: {
        template: string;
    };
} = ...

Accessors

Methods

  • Protected

    Attach event listeners to the rendered application form.

    Parameters

    • context: ApplicationRenderContext

      Prepared context data

    • options: RenderOptions

      Provided render options

    Returns void

  • Internal

    Returns Promise<{
        hasHistoryBack: boolean;
        hasHistoryForward: boolean;
        pageContent: any;
        url: string;
    }>

  • Parameters

    • force: any
    • options: any

    Returns Promise<void>