Changes

Jump to navigation Jump to search
no edit summary
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'
 +
} );
 +
 
 +
 
 +
 
 +
 
 +
 
 +
} );})

Navigation menu