|
|
Line 1: |
Line 1: |
| /* All JavaScript here will be loaded for users of the mobile site */ | | /* All JavaScript here will be loaded for users of the mobile site */ |
|
| |
| mw.loader.using('mediawiki.util').then(function () {
| |
| var header = document.querySelector('.minerva-header .branding-box');
| |
| if (header) {
| |
| var img = document.createElement('img');
| |
| img.src = '/w/images/FormulaOneLogo.svg'; // Replace with your correct path
| |
| img.alt = 'Formula One Wiki';
| |
| img.style.width = '120px'; // You can use %, em, or px
| |
| img.style.height = 'auto'; // Maintain aspect ratio
| |
| img.style.display = 'block';
| |
| img.style.margin = '0 auto';
| |
| header.innerHTML = '';
| |
| header.appendChild(img);
| |
| }
| |
| });
| |