Plants vs. Zombies: Replanted - v1.0.3
    Preparing search index...

    Interface IDialogContent

    interface IDialogContent {
        bbcode?: string;
        checkboxes?: ICheckbox[];
        choices?: ICheckbox[];
        condition?: Condition;
        htmlFile?: string;
        htmlText?: string;
        input?: IInput[];
        links?: ILink[];
        md?: string;
        message?: string;
        options?: {
            bbcodeContext?: IBBCodeContext;
            hideMessage?: boolean;
            linksAsButtons?: boolean;
            order?: DialogContentItem[];
            translated?: boolean;
            wrap?: boolean;
        };
        parameters?: any;
        text?: string;
    }
    Index

    Properties

    bbcode?: string
    checkboxes?: ICheckbox[]
    choices?: ICheckbox[]
    condition?: Condition
    htmlFile?: string
    htmlText?: string

    displays a message as html. NOTE: this will be inserted directy into the dom so it must never be html from an external source!

    IDialogContent

    input?: IInput[]
    links?: ILink[]

    list of clickable entries that don't (necessarily) cause the dialog to close

    md?: string
    message?: string

    regular text. This will be put into a scrollable, selectable textbox. Whether the text wraps or not is determined by options.wrap

    options?: {
        bbcodeContext?: IBBCodeContext;
        hideMessage?: boolean;
        linksAsButtons?: boolean;
        order?: DialogContentItem[];
        translated?: boolean;
        wrap?: boolean;
    }
    parameters?: any
    text?: string

    regular text. This will be wrapped, not selectable for the user, not scrollable and not maintain any kind of predefined linebreaks.