From be3aff5bc1ff1b3e74c422616807dea4221ca15f Mon Sep 17 00:00:00 2001 From: Antoine M Date: Wed, 7 Aug 2024 16:31:03 +0200 Subject: [PATCH] adding the notification js --- resources/js/app.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/resources/js/app.js b/resources/js/app.js index 353c3ca..730a948 100644 --- a/resources/js/app.js +++ b/resources/js/app.js @@ -7,6 +7,7 @@ import filterPublicationsInit from './archive-template-publications'; import accordeonInit from './accordeon'; import pageScrollerInit from './pageScroller'; import observeChapterProgression from './chapter-progression'; +import notificationsInit from './notifications.js'; // window.addEventListener('load', function () {}); window.addEventListener('DOMContentLoaded', (event) => { @@ -23,4 +24,7 @@ window.addEventListener('DOMContentLoaded', (event) => { // CONSEILS + PARCOURS observeChapterProgression(); + + // NOTIFICATIONS + notificationsInit(); });