MediaWiki:Common.js: Difference between revisions

From Pikipedia, the Pikmin wiki
Jump to navigation Jump to search
(Created page with "→‎Any JavaScript here will be loaded for all users on every page load.: →‎Rename Main Page tab: if (wgPageName == 'Main_Page' || wgPageName == 'Talk:Main_Page') addO...")
mNo edit summary
 
(125 intermediate revisions by 3 users not shown)
Line 1: Line 1:
/* Any JavaScript here will be loaded for all users on every page load. */
/* Any JavaScript here will be loaded for all users on desktop */


/* Rename Main Page tab */
/* Add user subpages toolbox link */
 
$(function() {
if (wgPageName == 'Main_Page' || wgPageName == 'Talk:Main_Page')
if (mw.config.get('wgCanonicalNamespace') === 'User' && mw.config.get('skin') !== 'timeless') {
    addOnloadHook(function () {
var subpagesLink = '/Special:PrefixIndex/User:' + mw.config.get('wgTitle').split('/')[0] + '/';
        var nstab = document.getElementById('ca-nstab-main')
mw.util.addPortletLink('p-tb', subpagesLink, 'User subpages', 't-subpages', 'Subpages for this user');
        if (nstab && wgUserLanguage=='en') {
}
            while (nstab.firstChild) nstab = nstab.firstChild
});
            nstab.nodeValue = 'Main Page'
        }
    }
)

Latest revision as of 16:14, April 3, 2024

/* Any JavaScript here will be loaded for all users on desktop */

/* Add user subpages toolbox link */
$(function() {
	if (mw.config.get('wgCanonicalNamespace') === 'User' && mw.config.get('skin') !== 'timeless') {
		var subpagesLink = '/Special:PrefixIndex/User:' + mw.config.get('wgTitle').split('/')[0] + '/';
		mw.util.addPortletLink('p-tb', subpagesLink, 'User subpages', 't-subpages', 'Subpages for this user');
	}
});