FEATURE Including article toolbar component

This commit is contained in:
Nonimart 2025-06-24 15:23:20 +02:00
parent 8188ba8557
commit 51b7104e37

View File

@ -2,6 +2,7 @@ import handleIndexPanel from './index-panel';
import handleFootnoteFormat from './footnote-format'; import handleFootnoteFormat from './footnote-format';
import handleCiteButton from './cite-button'; import handleCiteButton from './cite-button';
import { injectIdToNativeTitles } from './sommaire'; import { injectIdToNativeTitles } from './sommaire';
import { handleArticleToolbar } from './article-toolbar.ts';
export default function singles(): void { export default function singles(): void {
const isSingleRevue: HTMLElement | null = document.querySelector('.page--single-revue'); const isSingleRevue: HTMLElement | null = document.querySelector('.page--single-revue');
@ -13,4 +14,5 @@ export default function singles(): void {
handleIndexPanel(); handleIndexPanel();
handleFootnoteFormat(); handleFootnoteFormat();
handleCiteButton(); handleCiteButton();
handleArticleToolbar();
} }