MediaWiki:Common.js

From Destinypedia, the Destiny wiki

Revision as of 03:05, March 7, 2019 by Porplemontage (talk | contribs) (Created page with "→‎Any JavaScript here will be loaded for all users on every page load.: →‎SocialProfile: Point social talk tabs to user talk: $(function() { var namespace = mw.config....")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.
/* Any JavaScript here will be loaded for all users on every page load. */

/* SocialProfile: Point social talk tabs to user talk */
$(function() {
	var namespace = mw.config.get('wgCanonicalNamespace');
	if (namespace === 'UserProfile' || namespace === 'UserWiki') {
		if (mw.config.get('skin') == 'nimbus') {
			var talkTab = $('a[title="Discussion about the content page"]');
			talkTab.removeClass('tab-new');
		} else {
			var talkTab = $('#ca-talk');
			talkTab.removeClass('new');
		}
		var talkUrl = talkTab.attr('href').replace(namespace, 'User');
		talkTab.attr('href', talkUrl);
	}
});