User:Edgars2007/OOjs-UI example.js
Appearance
Code that you insert on this page could contain malicious content capable of compromising your account. If you import a script from another page with "importScript", "mw.loader.load", "iusc", or "lusc", take note that this causes you to dynamically load a remote script, which could be changed by others. Editors are responsible for all edits and actions they perform, including by scripts. User scripts are not centrally supported and may malfunction or become inoperable due to software changes. A guide to help you find broken scripts is available. If you are unsure whether code you are adding to this page is safe, you can ask at the appropriate village pump. This code will be executed when previewing this page. |
Documentation for this user script can be added at User:Edgars2007/OOjs-UI example. |
mw.loader.using( [ 'mediawiki.util', 'oojs-ui' ], function () {
var messageDialog = new OO.ui.MessageDialog();
// Create and append a window manager.
var windowManager = new OO.ui.WindowManager();
$( 'body' ).append( windowManager.$element );
// Add the dialog to the window manager.
windowManager.addWindows( [ messageDialog ] );
// Add the portlet link to the toolbar.
var portletLink = mw.util.addPortletLink(
'p-tb',
'#',
'Click me!',
't-clickme', // the link ID
'Go on, you know you want to click me...', // tooltip text
null,
'#t-whatlinkshere' // put it before the what links here link
);
// Tell the portlet link what to do when we click it.
$( portletLink ).click( function ( event ) {
event.preventDefault();
// Configure the message dialog when it is opened with the window manager's openWindow() method.
windowManager.openWindow( messageDialog, {
title: 'Foo',
message: $('<a href="https://www.mediawiki.org/wiki/OOjs_UI/Windows/Message_Dialogs">Open</a>' )
} );
} );
} );