Commit e0cf355f authored by Traboulsi's avatar Traboulsi
Browse files

Update public/index.html

parent 7356348e
Pipeline #11262 passed with stage
in 9 seconds
......@@ -1381,15 +1381,22 @@ Implementations, and Perspectives
}
function resetTopic() {
// Obere Beschreibungen ausblenden
document.querySelectorAll('.topic-details').forEach(el => el.style.display = 'none');
// Obere Beschreibungstexte ausblenden
document.querySelectorAll('.topic-details').forEach(el => {
el.style.display = 'none';
});
// Alle Buttons deaktivieren
document.querySelectorAll('.topic-buttons button').forEach(b => b.classList.remove('active'));
document.querySelectorAll('.topic-buttons button').forEach(b => {
b.classList.remove('active');
});
// Alle AP-Karten einblenden
document.querySelectorAll('.tab').forEach(card => card.style.display = 'block');
document.querySelectorAll('[data-topic]').forEach(card => {
card.style.display = 'block';
});
}
</script>
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment