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 () {
// Select the dropdown, excluding items to be preserved
// Preserve specific elements within the dropdown
$('.vector-menu-dropdown').find(':not(.preserve)').remove();
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

Revision as of 06:49, 10 November 2023

// Load necessary module asynchronously
mw.loader.using(['mediawiki.util'])
    .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
        var sulLink = mw.util.addPortletLink(
            'p-cactions',
            mw.util.getUrl('Special:CentralAuth/' + mw.user.getName()),
            'SUL',
            'ca-sul',
            'SUL',
            null,
            '#ca-sul'
        );
    });