homegrade_theme_production/resources/js/app.js
Nonimart 1886840c70
Some checks failed
continuous-integration/drone/push Build is failing
FINAL MERGE V2 (from antoine-merge branch)
2025-08-05 14:53:21 +02:00

33 lines
1.0 KiB
JavaScript

import editorInit from './editor-shortcode';
import menuInit from './menus';
import SchemaBulletPointsInit from './schema-bullet-points';
import taxonomyThematiqueFaqInit from './taxonomy-thematique-(faq)';
import archiveNewsInit from './archive-template-news';
import filterPublicationsInit from './archive-template-publications';
import accordeonInit from './accordeon';
import pageScrollerInit from './pageScroller';
import observeChapterProgression from './chapter-progression';
import notificationsInit from './notifications.js';
import LightBoxSingle from './lightboxSingle';
// window.addEventListener('load', function () {});
window.addEventListener('DOMContentLoaded', (event) => {
menuInit();
SchemaBulletPointsInit();
pageScrollerInit();
editorInit();
accordeonInit();
taxonomyThematiqueFaqInit();
// NEWS
archiveNewsInit();
// PUBLICATIONS
filterPublicationsInit();
// CONSEILS + PARCOURS
observeChapterProgression();
// NOTIFICATIONS
notificationsInit();
LightBoxSingle.init();
});