carhop__carhop-theme__DEV/resources/js/app.ts
Antoine M d3edfad1df
All checks were successful
continuous-integration/drone/push Build is passing
FEATURE Add alternate picture rotation functionality to enhance image presentation
2025-12-04 17:03:17 +01:00

13 lines
401 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';
window.addEventListener('load', function () {
menuInit();
initFooterShapes();
handleScrollTop();
handleInsidePageScrolling();
alternatePictures();
});