MediaWiki:Gadget-CategoryAboveAll.js: Difference between revisions

From Seeds of the Word, the encyclopedia of the influence of the Gospel on culture
(simplify)
 
m (1 revision imported)
 
(No difference)

Latest revision as of 20:48, August 30, 2020

//* by [[Commons:User:Ianezz|Ianezz]] ([[Commons:Commons:Village_pump/Archive/2009Sep#CSS_placement_of_categories]]), based on [[:wikinews:Help:User_style#Moving_categories_to_top]]

$( function catsattop() {
  if ( mw.config.get( 'wgCanonicalNamespace' ) === 'Special') {
    return;
  }
  var cats = document.getElementById('catlinks');
  var bc = document.getElementById('bodyContent');
  bc.insertBefore(cats, bc.childNodes[0]);
} );