MediaWiki:Common.js

From Step Mods | Change The Game
Revision as of 03:40, June 11, 2023 by Z929669 (talk | contribs)

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. */

/**
 * Adds CSS classes to the body tag based on the categories this page belongs to
 *
 * @source https://www.mediawiki.org/wiki/Snippets/Style_pages_based_on_categories
 * @revision 2016-01-18
 */
(function($, mw) {
	 var fn = function() {
		  var cats = mw.config.get('wgCategories'), newClasses;
		  if (cats) {
			   newClasses = $.map(cats, function(el) {
					return 'cat-' + encodeURIComponent(el.replace(/[ .]/g, '_')).replace(/%/g, '_');
			   }).join(' ');
		  $(document.body).addClass(newClasses);
		  }
	 };
	 if (document.body) {
		  fn();
	 } 
	 else {
		  $(fn);
	 }
})(jQuery, mw);

$( '.smw-ask-result>mw-parser-output > a' );