MediaWiki:Gadget-categoriesOnTop.js

Nota: Depois de publicar, poderá ter de contornar a cache do seu navegador para ver as alterações.

  • Firefox / Safari: Pressione Shift enquanto clica Recarregar, ou pressione Ctrl-F5 ou Ctrl-R (⌘-R no Mac)
  • Google Chrome: Pressione Ctrl-Shift-R (⌘-Shift-R no Mac)
  • Internet Explorer / Edge: Pressione Ctrl enquanto clica Recarregar, ou pressione Ctrl-F5
  • Opera: Pressione Ctrl-F5.
/**
 * Puts the categories on top of page
 *
 * @author: [[pt:User:!Silent]]
 */
/* global mediaWiki, jQuery */
/* jshint laxbreak:true */

( function( mw, $ ) {
'use strict';

function categoriesOnTop() {
	$( '#bodyContent' ).prepend( $( '#catlinks' ) );
}

if ( mw.config.get( 'wgCanonicalNamespace' ) !== 'Special'
	&& mw.config.get( 'wgAction' ) === 'view'
) {
	$( categoriesOnTop );
}

}( mediaWiki, jQuery ) );