carhop__carhop-theme__DEV/resources/js/app.ts
Antoine M 5df1252076
All checks were successful
continuous-integration/drone/push Build is passing
FEATURE Handling secondary submenus
2025-11-27 09:17:31 +01:00

11 lines
324 B
TypeScript

import menuInit from './header';
import initFooterShapes from './footer';
import handleScrollTop from './utilities/scroll-top';
import handleInsidePageScrolling from './page-scrolling';
window.addEventListener('load', function () {
menuInit();
initFooterShapes();
handleScrollTop();
handleInsidePageScrolling();
});