Difference between revisions of "User:Podehaye/store.js"
Jump to navigation
Jump to search
| Line 1: | Line 1: | ||
mw.notify( $('<span>storage</span>') ); | mw.notify( $('<span>storage</span>') ); | ||
mw.loader.using( 'oojs-ui-core' ).done( function () { | mw.loader.using( 'oojs-ui-core' ).done( function () { | ||
| − | $( function () {} );}) | + | $( function () { |
| + | var option1 = new OO.ui.RadioOptionWidget( { | ||
| + | data: 'cookie', | ||
| + | label: 'cookie' | ||
| + | } ), | ||
| + | option2 = new OO.ui.RadioOptionWidget( { | ||
| + | data: 'storage', | ||
| + | label: 'storage' | ||
| + | } ), | ||
| + | key = new OO.ui.TextInputWidget( { | ||
| + | placeholder: 'key' | ||
| + | } ), | ||
| + | value = new OO.ui.TextInputWidget( { | ||
| + | placeholder: 'value' | ||
| + | } ), | ||
| + | radio = new OO.ui.RadioSelectWidget( { | ||
| + | items: [ option1, option2 ] | ||
| + | } ), | ||
| + | save = new OO.ui.ButtonWidget( { | ||
| + | label: 'save' | ||
| + | } ), | ||
| + | show = new OO.ui.ButtonWidget( { | ||
| + | label: 'show' | ||
| + | } ), | ||
| + | info = new OO.ui.LabelWidget( { | ||
| + | label: 'label' | ||
| + | } ); | ||
| + | |||
| + | |||
| + | |||
| + | |||
| + | |||
| + | } );}) | ||
Revision as of 01:44, 18 May 2019
mw.notify( $('<span>storage</span>') );
mw.loader.using( 'oojs-ui-core' ).done( function () {
$( function () {
var option1 = new OO.ui.RadioOptionWidget( {
data: 'cookie',
label: 'cookie'
} ),
option2 = new OO.ui.RadioOptionWidget( {
data: 'storage',
label: 'storage'
} ),
key = new OO.ui.TextInputWidget( {
placeholder: 'key'
} ),
value = new OO.ui.TextInputWidget( {
placeholder: 'value'
} ),
radio = new OO.ui.RadioSelectWidget( {
items: [ option1, option2 ]
} ),
save = new OO.ui.ButtonWidget( {
label: 'save'
} ),
show = new OO.ui.ButtonWidget( {
label: 'show'
} ),
info = new OO.ui.LabelWidget( {
label: 'label'
} );
} );})