MediaWiki:Common.js: Difference between revisions
Jump to navigation
Jump to search
(Changed the attribute used by the switchable feature, so that it doesn't use the title. This is because using the title makes a tooltip appear when you mouse-over a switchable div. Hope this works...) |
mNo edit summary |
||
(35 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
/* Any JavaScript here will be loaded for all users on | /* 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'); | |||
} | |||
/ | |||
}); | }); | ||
Latest revision as of 15: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');
}
});