MediaWiki:Common.js

From SlyMods
Jump to navigation Jump to search

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 name
var namespaceCur = mw.config.get('wgCanonicalNamespace');

// If the page is not in mainspace, replace the namespace text with a badge
add_badge: if (namespaceCur != '') {
    // Get the page display title
    var firstHeading = document.getElementById('firstHeading');
    var displayTitle = firstHeading.innerHTML;

    // If the display title does not include namespace, we're done
    if (displayTitle.indexOf(':') === -1) break add_badge;

    // Replace the page heading with just the page name
    var displayTitleSplit = displayTitle.split(':'); // split title on : chars
    displayTitleSplit.splice(0, 1); // remove namespace from split title
    firstHeading.innerHTML = displayTitleSplit.join(':'); // re-join and set title

    // Insert the namespace badge before the title
    firstHeading.insertAdjacentHTML('afterbegin', '<div class="namespace-badge ns-' + namespaceCur + '">' + namespaceCur.split('_').join(' ') + '<span class="namespace-colon">:</span></span>');
}