MediaWiki:Common.js

Revision as of 02:21, 31 July 2022 by TheOnlyZac (talk | contribs) (Fixed badge display property)

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 on this page will be loaded for all users on every page load. */

/* Replace namespace text with badges */
// Get current namespace and page name
var namespaceCur = mw.config.get('wgCanonicalNamespace');
var pagenameCur = mw.config.get('wgTitle');

// Get the page title element
var firstHeading = document.getElementById('firstHeading');

// If the page is not in mainspace, replace the namespace text with a badge
if (namespaceCur != '') {
    firstHeading.innerHTML = pagenameCur;
    firstHeading.insertAdjacentHTML('afterbegin',
    '<div class="namespace-badge ns-' + namespaceCur + '">' + namespaceCur.split('_').join(' ').toUpperCase() + ':</span>');
}