User:Euphoria/common.js: Difference between revisions

From Test Wiki
Jump to navigation Jump to search
Content deleted Content added
No edit summary
No edit summary
Line 2: Line 2:
mw.loader.using(['mediawiki.util'])
mw.loader.using(['mediawiki.util'])
.then(function () {
.then(function () {
// Preserve specific elements within the dropdown
var $dropdown = $('.vector-menu-dropdown');
var $preserve = $dropdown.find('.preserve');

// Clear the dropdown and append the preserved elements
$dropdown.empty().append($preserve);

// Add a link to the 'p-cactions' portlet pointing to CentralAuth
// Add a link to the 'p-cactions' portlet pointing to CentralAuth
var sulLink = mw.util.addPortletLink(
var sulLink = mw.util.addPortletLink(

Revision as of 06:51, 10 November 2023

// Load necessary module asynchronously
mw.loader.using(['mediawiki.util'])
    .then(function () {
        // Add a link to the 'p-cactions' portlet pointing to CentralAuth
        var sulLink = mw.util.addPortletLink(
            'p-cactions',
            mw.util.getUrl('Special:CentralAuth/' + mw.user.getName()),
            'SUL',
            'ca-sul',
            'SUL',
            null,
            '#ca-sul'
        );
    });