Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
zedflow
Knight-2025
Commits
e0cf355f
Commit
e0cf355f
authored
Jun 04, 2025
by
Traboulsi
Browse files
Update public/index.html
parent
7356348e
Pipeline
#11262
passed with stage
in 9 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
public/index.html
View file @
e0cf355f
...
@@ -1380,16 +1380,23 @@ Implementations, and Perspectives
...
@@ -1380,16 +1380,23 @@ Implementations, and Perspectives
});
});
}
}
function
resetTopic
()
{
function
resetTopic
()
{
// Obere Beschreibungen ausblenden
// Obere Beschreibungstexte ausblenden
document
.
querySelectorAll
(
'
.topic-details
'
).
forEach
(
el
=>
el
.
style
.
display
=
'
none
'
);
document
.
querySelectorAll
(
'
.topic-details
'
).
forEach
(
el
=>
{
el
.
style
.
display
=
'
none
'
;
// Alle Buttons deaktivieren
});
document
.
querySelectorAll
(
'
.topic-buttons button
'
).
forEach
(
b
=>
b
.
classList
.
remove
(
'
active
'
));
// Alle Buttons deaktivieren
// Alle AP-Karten einblenden
document
.
querySelectorAll
(
'
.topic-buttons button
'
).
forEach
(
b
=>
{
document
.
querySelectorAll
(
'
.tab
'
).
forEach
(
card
=>
card
.
style
.
display
=
'
block
'
);
b
.
classList
.
remove
(
'
active
'
);
});
// Alle AP-Karten einblenden
document
.
querySelectorAll
(
'
[data-topic]
'
).
forEach
(
card
=>
{
card
.
style
.
display
=
'
block
'
;
});
}
}
</script>
</script>
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment