carhop__carhop-theme__DEV/resources/js/app.ts
Antoine M a762d15768
All checks were successful
continuous-integration/drone/push Build is passing
FEATURE Handle self page scrolling
2025-10-07 17:43:57 +02:00

11 lines
327 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();
});