From 642fad11fc5e45eb16351f4be85cf4fbb9132f54 Mon Sep 17 00:00:00 2001 From: Antoine M Date: Tue, 5 May 2026 11:11:10 +0200 Subject: [PATCH] FEATURE Handlign cite button --- resources/js/app.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/resources/js/app.ts b/resources/js/app.ts index 4a0de39..b6cf640 100644 --- a/resources/js/app.ts +++ b/resources/js/app.ts @@ -6,6 +6,7 @@ import alternatePictures from './alternate-pictures'; import { searchBarInit } from './search-bar'; import singlesInit from './singles/singles'; import archivesInit from './archives/archives'; +import handleCiteButton from './singles/cite-button'; window.addEventListener('load', function () { menuInit(); @@ -16,4 +17,5 @@ window.addEventListener('load', function () { searchBarInit(); singlesInit(); archivesInit(); + handleCiteButton(); });