m (1 revision imported) |
mNo edit summary |
||
Line 9: | Line 9: | ||
} | } | ||
}); | }); | ||
Revision as of 15:10, January 16, 2024
/* Any JavaScript here will be loaded for all users on desktop */
/* Add subpages toolbox link on user pages */
$(function() {
var title = mw.config.get('wgTitle');
if (mw.config.get('wgCanonicalNamespace') === 'User' && !title.includes('/') && mw.config.get('skin') !== 'timeless') {
var subpagesLink = '/Special:PrefixIndex/User:' + title + '/';
mediaWiki.util.addPortletLink('p-tb', subpagesLink, 'User subpages', 't-subpages', 'Subpages of this page');
}
});