MediaWiki:Common.js: Difference between revisions

From TimeRO Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
/* Any JavaScript here will be loaded for all users on every page load. */
/* Any JavaScript here will be loaded for all users on every page load. */
$(document).ready(function() {
 
$(document).ready(function () {
     $('#p-logo a').attr('href', 'https://timero.com.br/');
     $('#p-logo a').attr('href', 'https://timero.com.br/');
});
});
mw.loader.load('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css');
 
(function () {
    if (!document.querySelector('link[data-timero-fa]')) {
        var fa = document.createElement('link');
        fa.rel = 'stylesheet';
        fa.href = 'https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css';
        fa.setAttribute('data-timero-fa', '1');
        document.head.appendChild(fa);
    }
})();

Revision as of 19:44, 12 April 2026

/* Any JavaScript here will be loaded for all users on every page load. */

$(document).ready(function () {
    $('#p-logo a').attr('href', 'https://timero.com.br/');
});

(function () {
    if (!document.querySelector('link[data-timero-fa]')) {
        var fa = document.createElement('link');
        fa.rel = 'stylesheet';
        fa.href = 'https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css';
        fa.setAttribute('data-timero-fa', '1');
        document.head.appendChild(fa);
    }
})();