MediaWiki:Common.js: Difference between revisions

From Destinypedia, the Destiny wiki

No edit summary
mNo edit summary
 
(41 intermediate revisions by the same user not shown)
Line 1: Line 1:
/* Any JavaScript here will be loaded for all users on every page load. */
/* Any JavaScript here will be loaded for all users on desktop */


/* SocialProfile: Point social talk tabs to user talk */
/* Add user subpages toolbox link */
$(function() {
$(function() {
var namespace = mw.config.get('wgCanonicalNamespace');
if (mw.config.get('wgCanonicalNamespace') === 'User' && mw.config.get('skin') !== 'timeless') {
if (namespace === 'UserProfile' || namespace === 'UserWiki') {
var subpagesLink = '/Special:PrefixIndex/User:' + mw.config.get('wgTitle').split('/')[0] + '/';
if (mw.config.get('skin') == 'nimbus') {
mw.util.addPortletLink('p-tb', subpagesLink, 'User subpages', 't-subpages', 'Subpages for this user');
var talkTab = $('a[title="Discussion about the content page"]');
talkTab.removeClass('tab-new');
} else {
var talkTab = $('#ca-talk a');
$('#ca-talk').removeClass('new');
}
var talkUrl = talkTab.attr('href').replace('index.php?title=', '').replace(namespace, 'User').replace('&action=edit&redlink=1', '');
talkUrl = talkUrl.substring(0, talkUrl.indexOf('/', 32));
talkTab.attr('href', talkUrl);
}
}
});
});

Latest revision as of 16:16, 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');
	}
});