Tribunal de Justiça do Estado da Bahia
Mudanças entre as edições de "MediaWiki:Monobook.js"
De DMO
| Linha 1: | Linha 1: | ||
/* Qualquer JavaScript aqui colocado afetará os usuários do skin MonoBook */ | /* Qualquer JavaScript aqui colocado afetará os usuários do skin MonoBook */ | ||
| − | $ ( | + | $( document ).ready( function() { |
| − | / / | + | // Set the default expanded items by their headline |
| − | var defaultExpandItems = | + | var defaultExpandItems = ['Navigation', 'Orga']; |
| − | / / | + | // Set the basic-name for the cookies, which save the current state of expanding |
| − | var expandCookieName = | + | var expandCookieName = 'disdance_project_wiki_nav_expanded_'; |
| − | var maxHeights = | + | var maxHeights = []; |
| − | var expandeds = | + | var expandeds = []; |
| − | var labels = | + | var labels = []; |
| − | initNav ( ) ; | + | initNav(); |
| − | } ) ; | + | }); |
Edição das 12h01min de 19 de agosto de 2013
/* Qualquer JavaScript aqui colocado afetará os usuários do skin MonoBook */
$( document ).ready( function() {
// Set the default expanded items by their headline
var defaultExpandItems = ['Navigation', 'Orga'];
// Set the basic-name for the cookies, which save the current state of expanding
var expandCookieName = 'disdance_project_wiki_nav_expanded_';
var maxHeights = [];
var expandeds = [];
var labels = [];
initNav();
});