Weitere Optionen
Admin (Diskussion | Beiträge) Die Seite wurde neu angelegt: „→Das folgende JavaScript wird für alle Benutzer geladen.: mw.hook('wikipage.content').add(function($content) { document.querySelectorAll('.citizen-section').forEach(function(section) { section.hidden = 'until-found'; }); });“ |
Admin (Diskussion | Beiträge) Keine Bearbeitungszusammenfassung |
||
| Zeile 1: | Zeile 1: | ||
/* Das folgende JavaScript wird für alle Benutzer geladen. */ | /* Das folgende JavaScript wird für alle Benutzer geladen. */ | ||
mw.hook('wikipage.content').add(function($content) { | mw.hook('wikipage.content').add(function($content) { | ||
const headings = document.querySelectorAll('.citizen-section-heading'); | |||
if (headings.length === 0) return; | |||
document.querySelectorAll('.citizen-section').forEach(function(section) { | document.querySelectorAll('.citizen-section').forEach(function(section) { | ||
section.hidden = 'until-found'; | section.hidden = 'until-found'; | ||
}); | }); | ||
}); | }); | ||
Version vom 11. Mai 2026, 21:27 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;
document.querySelectorAll('.citizen-section').forEach(function(section) {
section.hidden = 'until-found';
});
});