carhop__carhop-theme__DEV/resources/js/app.ts
2026-05-05 11:11:10 +02:00

22 lines
671 B
TypeScript

import menuInit from './header';
import initFooterShapes from './footer';
import handleScrollTop from './utilities/scroll-top';
import handleInsidePageScrolling from './page-scrolling';
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();
initFooterShapes();
handleScrollTop();
handleInsidePageScrolling();
alternatePictures();
searchBarInit();
singlesInit();
archivesInit();
handleCiteButton();
});