Weitere Optionen
Admin (Diskussion | Beiträge) Keine Bearbeitungszusammenfassung |
Admin (Diskussion | Beiträge) Keine Bearbeitungszusammenfassung |
||
| Zeile 4: | Zeile 4: | ||
if (headings.length === 0) return; | if (headings.length === 0) return; | ||
document.querySelectorAll('.citizen-section').forEach(function(section) { | const sections = document.querySelectorAll('.citizen-section'); | ||
sections.forEach(function(section, index) { | |||
if (index === 0) return; // Einleitungstext überspringen | |||
section.hidden = 'until-found'; | section.hidden = 'until-found'; | ||
}); | }); | ||
}); | }); | ||
Version vom 11. Mai 2026, 21:33 Uhr
/* Das folgende JavaScript wird für alle Benutzer geladen. */
mw.hook('wikipage.content').add(function($content) {
const headings = document.querySelectorAll('.citizen-section-heading');
if (headings.length === 0) return;
const sections = document.querySelectorAll('.citizen-section');
sections.forEach(function(section, index) {
if (index === 0) return; // Einleitungstext überspringen
section.hidden = 'until-found';
});
});