14 lines
No EOL
377 B
JavaScript
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);
|
|
} |