MediaWiki:Timeless.js: Difference between revisions
From SmashWiki, the Super Smash Bros. wiki
Jump to navigationJump to search
No edit summary |
mNo edit summary |
||
(5 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
/* Any JavaScript here will be loaded for users of the Timeless skin */ | /* Any JavaScript here will be loaded for users of the Timeless skin */ | ||
/* Add user subpages toolbox link */ | |||
/* Add subpages toolbox link | |||
$(function() { | $(function() { | ||
if (mw.config.get('wgCanonicalNamespace') === 'User') { | |||
if (mw.config.get('wgCanonicalNamespace') === 'User | var subpagesLink = '/Special:PrefixIndex/User:' + mw.config.get('wgTitle').split('/')[0] + '/'; | ||
var subpagesLink = '/Special:PrefixIndex/User:' + | mw.util.addPortletLink('p-userpagetools', subpagesLink, 'User subpages', 't-subpages', 'Subpages for this user'); | ||
} | } | ||
}); | }); |
Latest revision as of 15:18, April 3, 2024
/* Any JavaScript here will be loaded for users of the Timeless skin */
/* Add user subpages toolbox link */
$(function() {
if (mw.config.get('wgCanonicalNamespace') === 'User') {
var subpagesLink = '/Special:PrefixIndex/User:' + mw.config.get('wgTitle').split('/')[0] + '/';
mw.util.addPortletLink('p-userpagetools', subpagesLink, 'User subpages', 't-subpages', 'Subpages for this user');
}
});