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.
/* Código Javascript colocado aqui será carregado para utilizadores do tema Moderno */

/* Compatibility function to run scripts only tested on Monobook.
 * Required for using Twinkle or Friendly (along with many other scripts).
 *
 * @source: [[w:en:MediaWiki:Modern.js]]
 * @author: TheDJ, Amalthea & Liangent
 */ 
document._realGEBI = document.getElementById;
document.getElementById = function( id ) {
    var x = this._realGEBI( id );
    if( x ) return x;
    else {
    // try to find a reasonable equivalent for monobook-specific element ids
        switch(id) {
            case 'content': return this._realGEBI( 'mw_content' );
            case 'column-content': return this._realGEBI( 'mw_contentwrapper' );
            case 'bodyContent': return this._realGEBI( 'mw_contentholder' );
            case 'column-one': return this._realGEBI( 'mw_portlets' );
            case 'globalWrapper': return this._realGEBI( 'mw_main' );
            default: return null;
        }
    }
}