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