Open main menu

TaticView β

MediaWiki:Common.js

Revision as of 18:23, 22 January 2019 by Jonathan (talk | contribs)

Note: After saving, 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: Go to Menu → Settings (Opera → Preferences on a Mac) and then to Privacy & security → Clear browsing data → Cached images and files.
/* Any JavaScript here will be loaded for all users on every page load. */

$(function(){
  //Mostra o menu de ferramentas para usuários autenticados (que possuem registro)
  if (mw.user.getRegistration() && mw.user.getId() > 0) {
    $('#mw-navigation #p-tb').css('cssText', 'display: block !important;');
  }

  //Mantem a parte do Bem vindo... aberta por default e remove o click para fecha-la nos mobiles
  $("#content-collapsible-block-0").addClass("open-block");
  $(".mw-parser-output > h2").first().off("click");

  //Remove classe não utilizada nos menus dos mobiles 
  $("#mw-mf-page-left ul:last-child").removeClass('hlist');

  $("#mw-mf-page-left ul:last-child li").addClass("mw-ui-icon mw-ui-icon-before mw-ui-icon-minerva-watchlist");

})


mw.loader.using('mobile.site.styles')