MediaWiki:Common.js
From Helbreath Portal
Note: After publishing, 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: Press Ctrl-F5.
// Auto-insert logo centralnie nad stroną
$(document).ready(function() {
// sprawdź, czy logo już istnieje
if ($('#mw-logo').length === 0) {
var logo = $('<a>', {
id: 'mw-logo',
href: mw.util.getUrl('Main_Page'),
css: {
display: 'block',
margin: '20px auto',
width: '150px',
height: '50px',
background: 'url(/images/portallogo.png) no-repeat center',
backgroundSize: 'contain',
zIndex: 1000
}
});
// wstaw logo na początek headera
$('#mw-header').prepend(logo);
}
});