Jump to content

Modal: Difference between revisions

No edit summary
No edit summary
Line 65: Line 65:
Setting either dimension to zero will reset that dimension.
Setting either dimension to zero will reset that dimension.


==== modal.setFormTitle(title: <code>String</code>, opts: <code>FormTitleOpts</code>): <code>void</code> ====
==== modal.setFormTitle(title: <code>String</code>, opts?: <code>{ bold?: Boolean, center?: Boolean }</code>): <code>void</code> ====
Set a title or description at the top of the modal.
Set a title or description at the top of the modal.


Line 177: Line 177:


=== Interfaces ===
=== Interfaces ===
CheckboxObj: <code>Object { elm: HTMLLabelElement, cbElm: Function, children: Array<CheckboxObj> }</code>
CheckboxObj:<syntaxhighlight lang="typescript">
 
Object {
EntryObj: <code>Object { input: HTMLInputElement }</code>
    elm: HTMLLabelElement,
 
    cbElm: Function,
FormTitleOpts: <code>Object { bold: Boolean, center: Boolean }</code>
    children: Array<CheckboxObj>
}
</syntaxhighlight>EntryObj:<syntaxhighlight lang="typescript">
Object {
    input: HTMLInputElement
}
</syntaxhighlight>


=== Static functions ===
=== Static functions ===