Foundry Virtual Tabletop - API Documentation - Version 14
    Preparing search index...

    Interface DetachedWindowOptions

    interface DetachedWindowOptions {
        id?: string;
        position?: Omit<ApplicationPosition, "scale" | "zIndex">;
        source?: Window;
        timeout?: number;
    }
    Index

    Properties

    id?: string

    A unique identifier for the detached browser window.

    position?: Omit<ApplicationPosition, "scale" | "zIndex">

    Window position.

    source?: Window

    The window from which to call open(). Defaults to the main workspace window. Must be the window in which the triggering user gesture occurred, otherwise the browser may block the popup.

    timeout?: number

    The time to wait, in milliseconds, for the window to open before considering the operation as failed.