MediaWiki:Monobook.js
Revisão de 12h56min de 7 de agosto de 2020 por In7cr7pe7 (discussão | contribs) (Criou página com '→Qualquer JavaScript aqui colocado será carregado para usuários usando o tema MonoBook: →Any JavaScript here will be loaded for users using the MonoBook skin: /**...')
Nota: Após salvar, você pode ter que limpar o "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: PressioneCtrl enquanto clica Recarregar, ou Pressione Ctrl-F5
- Opera: Vá para Menu → Configurações (Opera → Preferencias no Mac) e depois para Privacidade e Segurança → Limpar dados de navegação → Imagens e arquivos em cache.
/* Qualquer JavaScript aqui colocado será carregado para usuários usando o tema MonoBook */
/* Any JavaScript here will be loaded for users using the MonoBook skin */
/**
* Topbar content fix with sitenotice and CentralNotice
*
* Description: This fixes the location of topbar content (e.g., featured
* content star) when the sitenotice or CentralNotice is active.
* Maintainers: [[User:TheDJ]], [[User:MZMcBride]]
*/
// Only when editing/previewing a page
if ( mw.config.get( 'wgAction' ) == 'submit' || mw.config.get( 'wgAction' ) == 'view' ) {
$( function() {
// If there is a dismissible sitenotice or an (expanded) centralnotice
if ( $( '#mw-dismissible-notice' ).length || $( '#centralNotice' ).hasClass('expanded') ) {
mw.util.addCSS( '#bodyContent { position: relative; } #coordinates { position: absolute; top: 1px !important; }' );
}
} );
}