MediaWiki:Common.js
z Kitakija
Kedźbu: Po składowanju dyrbiš snano pufrowak swojeho wobhladowaka wuprózdnić, Mozilla/Firefox/Safari: tłóč na Umsch kliknjo na Znowa abo tłóč Strg-Umsch-R (Cmd-Shift-R na Apple Mac); IE: tłóč Strg kliknjo na symbol Aktualisieren abo tłóč Strg-F5; Konqueror:: Klikń jenož na tłóčatko Erneut laden abo tłoč F5; Wužiwarjo Opery móža swój pufrowak dospołnje w Tools→Preferences wuprózdnić.
/* Jedes JavaScript hier wird für alle Benutzer für jede Seite geladen. */ // ============================================================ // BEGIN Configuration for "star" logo at the top of Featured Articles /** set to false in [[Special:Mypage/monobook.js]] to switch off this "feature" */ var enable_linkFA = true; /** * star logo for featured articles in other languages, * see [[:Template:Link_FA]] and [[MediaWiki:Common.css]] */ function linkFA() { // early exit when diabled if (!enable_linkFA) return; // links are to replaced in p-lang only var pLang = document.getElementById("p-lang"); if (!pLang) return; var lis = pLang.getElementsByTagName("li"); for (var i=0; i<lis.length; i++) { var li = lis[i]; // only links with a corresponding Link_FA template are interesting if (!document.getElementById(li.className + "-fa")) continue; // additional class so the template can be hidden with CSS li.className += " FA"; // change title li.title = "Dieser Artikel wurde als exzellent bewertet."; } } // aOnloadFunctions[aOnloadFunctions.length] = linkFA; addOnloadHook(linkFA); // END Configuration for "star" logo at the top of Featured Articles */ // ============================================================