diff options
Diffstat (limited to 'source/features/collapse-markdown-sections.tsx')
-rw-r--r-- | source/features/collapse-markdown-sections.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/features/collapse-markdown-sections.tsx b/source/features/collapse-markdown-sections.tsx index 97ebf8d1..e96b6116 100644 --- a/source/features/collapse-markdown-sections.tsx +++ b/source/features/collapse-markdown-sections.tsx @@ -37,7 +37,7 @@ function onHeadingClick(event: delegate.Event<MouseEvent, HTMLElement>): void { function init(): void { delegate(document, '.markdown-body > :is(h1, h2, h3, h4, h5, h6)', 'click', onHeadingClick); - document.body.classList.add('.rgh-' + __filebasename); + document.body.classList.add('rgh-' + __filebasename); } void features.add(__filebasename, { |