Difference between revisions of "User:Podehaye/store.js"
Jump to navigation
Jump to search
| Line 28: | Line 28: | ||
label: 'label' | label: 'label' | ||
} ); | } ); | ||
| − | + | save.on( 'click', function () { | |
| + | mw.cookie.set( key.getValue(), value.getValue() )}); | ||
| + | |||
| + | show.on( 'click', function () { | ||
| + | info.setLabel(mw.cookie.get(key.getValue()))}); | ||
$( '#mw-content-text' ).prepend( | $( '#mw-content-text' ).prepend( | ||
Revision as of 01:46, 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'
} );
save.on( 'click', function () {
mw.cookie.set( key.getValue(), value.getValue() )});
show.on( 'click', function () {
info.setLabel(mw.cookie.get(key.getValue()))});
$( '#mw-content-text' ).prepend(
radio.$element,
key.$element,
value.$element,
save.$element,
show.$element,
info.$element
);
} );})
<br>
<br>