Mudanças entre as edições de "MediaWiki:Common.js"
Linha 9: | Linha 9: | ||
if (pageName == "Página_principal") { | if (pageName == "Página_principal") { | ||
− | $( "gallerybox" ).each(function( index ) { | + | $( ".gallerybox" ).each(function( index ) { |
console.log( index + ": " + $( this ).text() ); | console.log( index + ": " + $( this ).text() ); | ||
}); | }); |
Edição das 20h15min de 21 de março de 2019
/* Códigos JavaScript aqui colocados serão carregados por todos aqueles que acessarem alguma página deste wiki */ $(function () { var st = mw.config; console.log(st.get("wgArticleId")); console.log(st.get("wgPageName")); var pageName = st.get("wgPageName"); if (pageName == "Página_principal") { $( ".gallerybox" ).each(function( index ) { console.log( index + ": " + $( this ).text() ); }); } }());