MediaWiki:Common.js: Difference between revisions
Jump to navigation
Jump to search
Alexrules14 (talk | contribs) Created page with "→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-' + encodeURICompo..." |
Alexrules14 (talk | contribs) No edit summary Tag: Reverted |
||
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 every page load. */ | ||