index-main/assets/js/script.js
Julie Blanc 4642425f43
All checks were successful
Deploy / Deploy to Production (push) Successful in 12s
replace all w3-include
2026-01-06 13:57:45 +01:00

14 lines
No EOL
377 B
JavaScript

import { headerToggle, headerScrollVisibility } from './header.js';
import { copyLink } from './share.js';
import { btnSticky } from './mobile-sticky.js';
const responsiveMedium = 1080;
const responsiveSmall = 768;
window.onload = async function () {
console.log("SCRIPT LOADED");
headerToggle();
headerScrollVisibility();
copyLink();
btnSticky(responsiveSmall);
}