MediaWiki:Common.js: Difference between revisions
Jump to navigation
Jump to search
Created page with "// Load Font Awesome 6 (brands + solid) globally (function () { if (document.querySelector('link[href*="fontawesome-free"][href$=".css"]')) return; var l = document.createElement('link'); l.rel = 'stylesheet'; l.href = 'https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.5.2/css/all.min.css'; document.head.appendChild(l); })();" |
(No difference)
|
Latest revision as of 22:50, 6 October 2025
// Load Font Awesome 6 (brands + solid) globally
(function () {
if (document.querySelector('link[href*="fontawesome-free"][href$=".css"]')) return;
var l = document.createElement('link');
l.rel = 'stylesheet';
l.href = 'https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.5.2/css/all.min.css';
document.head.appendChild(l);
})();