We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 88ac017 commit 924f60fCopy full SHA for 924f60f
src/routes/tutorial/[slug]/Menu.svelte
@@ -83,7 +83,7 @@
83
transition:slide={{ duration }}
84
>
85
<button
86
- on:click|stopPropagation={() => {
+ on:click={() => {
87
if (expanded_part !== part.slug) {
88
expanded_part = part.slug;
89
expanded_chapter = part.chapters[0].slug;
@@ -102,7 +102,7 @@
102
aria-current={chapter.slug === current.chapter.slug ? 'step' : undefined}
103
104
105
- on:click|stopPropagation={() => (expanded_chapter = chapter.slug)}
+ on:click={() => (expanded_chapter = chapter.slug)}
106
style="width: 100%; text-align: start;"
107
108
<!-- <img src={arrow} alt="Arrow icon" /> -->
0 commit comments