mirror of
https://github.com/Universal-Omega/PortableInfobox.git
synced 2024-11-27 09:41:46 +00:00
PortableInfoboxBuilder: add support for format
This commit is contained in:
parent
03ea9fcaff
commit
c7c3873b5d
|
@ -127,6 +127,10 @@
|
|||
placeholder: this.msg( 'nodeparam-label' ),
|
||||
disabled: true
|
||||
} );
|
||||
this.nodeInputFormat = new OO.ui.TextInputWidget( {
|
||||
placeholder: this.msg( 'nodeparam-format' ),
|
||||
disabled: true
|
||||
} );
|
||||
this.nodeInputDefault = new OO.ui.TextInputWidget( {
|
||||
placeholder: this.msg( 'nodeparam-default' ),
|
||||
disabled: true
|
||||
|
@ -154,6 +158,12 @@
|
|||
help: this.msg( 'nodeparamhelp-label', [], true ),
|
||||
disabled: true
|
||||
} ).$element,
|
||||
new OO.ui.FieldLayout( this.nodeInputFormat, {
|
||||
label: this.msg( 'nodeparam-format' ),
|
||||
align: 'top',
|
||||
help: this.msg( 'nodeparamhelp-format', [], true ),
|
||||
disabled: true
|
||||
} ).$element,
|
||||
new OO.ui.FieldLayout( this.nodeInputDefault, {
|
||||
label: this.msg( 'nodeparam-default' ),
|
||||
align: 'top',
|
||||
|
@ -180,6 +190,7 @@
|
|||
|
||||
this.toggleNodeMenuWidget( this.nodeInputSource, supports.source, 'source' );
|
||||
this.toggleNodeMenuWidget( this.nodeInputLabel, supports.label, 'label' );
|
||||
this.toggleNodeMenuWidget( this.nodeInputFormat, supports.format, 'format' );
|
||||
this.toggleNodeMenuWidget( this.nodeInputDefault, supports.default, 'default' );
|
||||
this.toggleNodeMenuWidget( this.nodeInputValue, supports.value, 'value' );
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue