과제 테스트/고양이 사진 검색 (programmers)
[Front-End] 1. 이미지 상세 보기 모달 관련
1. 모달창 닫기 구현하기 # 기존 코드 (app.js) constructor($target) { this.$target = $target; ... this.imageInfo = new ImageInfo({ $target, data: { visible: false, image: null } }); } # 닫기 버튼 추가 (1) // imageInfo.js 의 render 메서드. render() { if (this.data.visible) { const { name, url, temperament, origin } = this.data.image; this.$imageInfo.innerHTML = ` ${name} x 성격: ${temperament} 태생: ${origin} `; this.$imageI..