index-main/assets/js/script.js

14 lines
377 B
JavaScript
Raw Normal View History

2026-01-06 13:57:45 +01:00
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);
}