| Line 1: |
Line 1: |
| − | mw.notify( $('<span>Welcome, Paul, your <a href="https://wiki.personaldata.io/wiki/User:Podehaye/common.js">user script</a> is loading!</span>') ); | + | mw.notify( $('<span>Welcome, Paul, your <a href="https://wiki.personaldata.io/wiki/User:Podehaye/common.js">user script on PersonalData.IO</a> is loading!</span>') ); |
| | | | |
| − | mw.loader.load( '//wiki.personaldata.io/w/index.php?title=User:Podehaye/button.js&action=raw&ctype=text/javascript' ); // front button for testing | + | // mw.loader.load( '//wiki.personaldata.io/w/index.php?title=User:Podehaye/button.js&action=raw&ctype=text/javascript' ); // front button for testing |
| − | | + | // mw.loader.load( '//wiki.personaldata.io/w/index.php?title=User:Podehaye/store.js&action=raw&ctype=text/javascript' ); // storage form for testing |
| − | | + | // mw.loader.load( '//wiki.personaldata.io/w/index.php?title=User:Podehaye/mwhtml.js&action=raw&ctype=text/javascript' ); // mw.html test |
| − | | |
| − | // Button: | |
| − | mw.loader.using( 'oojs-ui-core' ).done( function () { | |
| − | $( function () {
| |
| − | var key = new OO.ui.TextInputWidget( {
| |
| − | placeholder: 'key'
| |
| − | } ),
| |
| − | value = new OO.ui.TextInputWidget( {
| |
| − | placeholder: 'value'
| |
| − | } ),
| |
| − | button = new OO.ui.ButtonWidget( {
| |
| − | label: 'save'
| |
| − | } ),
| |
| − | info = new OO.ui.LabelWidget( {
| |
| − | label: 'label'
| |
| − | } );
| |
| − | | |
| − |
| |
| − | button.on( 'enter', function () {
| |
| − | mw.storage.set( "a", "b" )});
| |
| − |
| |
| − | | |
| − | | |
| − | // Append the app widgets
| |
| − | $( '#mw-content-text' ).prepend(
| |
| − | // "hello", | |
| − | key.$element,
| |
| − | value.$element,
| |
| − | button.$element,
| |
| − | info.$element
| |
| − | );
| |
| − | | |
| − | } );
| |
| − | | |
| − | } );
| |