<!–
–>
// 정적 스냅샷 알림
function alertOriginalPage() {
window.open(‘https://uloca.net/apt/’, ‘_blank’);
}
// 아파트명 그룹 카드 클릭 처리
function viewAptName(legalName, aptName, pText) {
const searchUrl = ‘https://uloca.net/apt/?kwd=’ + encodeURIComponent(legalName) +
‘&aptName=’ + encodeURIComponent(pText) +
‘&searchType=’ + (window.searchType || ‘1’);
window.open(searchUrl, ‘_blank’);
}
// 검색 기능을 원본 페이지로 리다이렉트
window.searchajaxApt = () => window.open(‘https://uloca.net/apt/’, ‘_blank’);
window.checkLocation_view = () => window.open(‘https://uloca.net/apt/’, ‘_blank’);
// UI 초기화
document.addEventListener(‘DOMContentLoaded’, function() {
const dropdownElementList = [].slice.call(document.querySelectorAll(‘.dropdown-toggle’));
dropdownElementList.map(function (dropdownToggleEl) {
return new bootstrap.Dropdown(dropdownToggleEl);
});
});