carhop__carhop-theme__DEV/resources/js/app.ts
Antoine M 946e3d3cdf
All checks were successful
continuous-integration/drone/push Build is passing
FEATURE Big menu refactoring to match dynamlique menu
2025-12-09 09:32:48 +01:00

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