bga-jump-to
    Preparing search index...

    Interface JumpToSettings

    interface JumpToSettings {
        defaultFolded?: boolean;
        element?: HTMLElement;
        entries: JumpToEntry[];
        localStorageFoldedKey?: string;
    }
    Index
    defaultFolded?: boolean

    Set if the controls are folded by default. Default (false) is visible controls

    element?: HTMLElement

    The element to attach the controls to. Default is #game_play_area_wrap

    entries: JumpToEntry[]

    Jump To menu entries. usually the table(s), then the players (real or fake). Use BgaPlayerEntries to automatically list all players in gamedatas. It should match display order in the game area. Default (empty)

    localStorageFoldedKey?: string

    The key used to persist the folded state on localStorage. Default (unset) is no storage.