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
8f3ed425
Commit
8f3ed425
authored
Jun 04, 2025
by
Traboulsi
Browse files
Update public/index.html
parent
9674d846
Pipeline
#11260
passed with stage
in 8 seconds
Changes
1
Pipelines
1
Show whitespace changes
Inline
Side-by-side
public/index.html
View file @
8f3ed425
...
@@ -1381,14 +1381,14 @@ Implementations, and Perspectives
...
@@ -1381,14 +1381,14 @@ Implementations, and Perspectives
}
}
function
resetTopic
()
{
function
resetTopic
()
{
const
items
=
document
.
querySelectorAll
(
'
[data-topic]
'
);
// Obere Beschreibungen ausblenden
const
topicDetails
=
document
.
querySelectorAll
(
'
.topic-details
'
);
document
.
querySelectorAll
(
'
.topic-details
'
).
forEach
(
el
=>
el
.
style
.
display
=
'
none
'
);
const
buttons
=
document
.
querySelectorAll
(
'
.topic-buttons button
'
);
buttons
.
forEach
(
btn
=>
btn
.
classList
.
remove
(
'
active
'
));
// Alle Buttons deaktivieren
document
.
querySelectorAll
(
'
.topic-buttons button
'
).
forEach
(
b
=>
b
.
classList
.
remove
(
'
active
'
));
items
.
forEach
(
item
=>
item
.
style
.
display
=
'
block
'
);
// Alle AP-Karten einblenden
topicDetails
.
forEach
(
detail
=>
detail
.
style
.
display
=
'
block
'
);
document
.
querySelectorAll
(
'
.tab
'
).
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