(() => { // webpackBootstrap var __webpack_exports__ = {}; (() => { /* const langCode = window.localStorage.getItem('homelangCode') || 'ko'; const langPath = langCode === 'ko' ? '' : `-${langCode}`; if (window.location.pathname.indexOf(`/brochure${langPath}.html`) < 0) { window.location.replace(`/home/pages/brochure${langPath}.html?langCode=${langCode}`); } */ /* const { EventManager } = ShopbySkin; EventManager.on('PAGE_LOAD_COMPLETED', (commonData) => { document.querySelectorAll('[data-lang]').forEach((item) => { const langCode = item.getAttribute('data-lang'); const langPath = langCode === 'ko' ? '' : `-${langCode}`; item.href = `/home/pages/brochure${langPath}.html?langCode=${langCode}`; }); const interval = setInterval(() => { document.querySelectorAll('[data-lang]').forEach((item) => { const cloneItem = item.cloneNode(true); item.parentNode.replaceChild(cloneItem, item); }); }, 10); setTimeout(() => { clearInterval(interval); }, 2000); }); */ })(); })(); // 스크롤 시 헤더 클래스 토글 document.addEventListener('scroll', function () { var topHeader = document.querySelector('header'); if (window.scrollY > 0) { topHeader.classList.add('scroll'); } else { topHeader.classList.remove('scroll'); } });