MediaWiki:Timeless.js: Difference between revisions
From SmashWiki, the Super Smash Bros. wiki
Jump to navigationJump to search
No edit summary |
mNo edit summary |
||
Line 7: | Line 7: | ||
var subpagesLink = '/Special:PrefixIndex/User:' + title + '/'; | var subpagesLink = '/Special:PrefixIndex/User:' + title + '/'; | ||
mediaWiki.util.addPortletLink('p-userpagetools', subpagesLink, 'User subpages', 't-subpages', 'Subpages of this page'); | mediaWiki.util.addPortletLink('p-userpagetools', subpagesLink, 'User subpages', 't-subpages', 'Subpages of this page'); | ||
} | } | ||
}); | }); |
Revision as of 16:50, September 1, 2023
/* Any JavaScript here will be loaded for users of the Timeless skin */
/* Add subpages toolbox link on user pages */
$(function() {
var title = mw.config.get('wgTitle');
if (mw.config.get('wgCanonicalNamespace') === 'User' && !title.includes('/')) {
var subpagesLink = '/Special:PrefixIndex/User:' + title + '/';
mediaWiki.util.addPortletLink('p-userpagetools', subpagesLink, 'User subpages', 't-subpages', 'Subpages of this page');
}
});