26 lines
759 B
JavaScript
26 lines
759 B
JavaScript
/**
|
|
* Project Master Overseas Common JS
|
|
* 공통 네비게이션, 유틸리티, 전역 이벤트 관리
|
|
*/
|
|
|
|
function navigateTo(path) {
|
|
location.href = path;
|
|
}
|
|
|
|
// --- 전역 이벤트: 모든 모달창 ESC 키로 닫기 ---
|
|
document.addEventListener('keydown', (e) => {
|
|
if (e.key === 'Escape') {
|
|
// 대시보드 모달
|
|
if (typeof closeAuthModal === 'function') closeAuthModal();
|
|
if (typeof closeActivityModal === 'function') closeActivityModal();
|
|
|
|
// 메일 시스템 모달
|
|
if (typeof closeModal === 'function') closeModal();
|
|
if (typeof closeAddressBook === 'function') closeAddressBook();
|
|
}
|
|
});
|
|
|
|
document.addEventListener('DOMContentLoaded', () => {
|
|
// 공통 초기화 로직
|
|
});
|