MediaWiki:Timeless.js: Difference between revisions
From Destinypedia, the Destiny wiki
(Created page with "→Any JavaScript here will be loaded for users using the Timeless skin: →Mobile menu fix: $(function() { function menuFix( $element ) { if ( $(window).width() >= 85...") |
mNo edit summary |
||
(8 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
/* Any JavaScript here will be loaded for users | /* Any JavaScript here will be loaded for users of the Timeless skin */ | ||
/* | /* Add user subpages toolbox link */ | ||
$(function() { | $(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'); | |||
} | } | ||
}); | }); |
Latest revision as of 15:16, 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');
}
});