Подскажите, правильно ли будет такой код:
class Popup {
constructor() {};
open(event) {
if(event.target.classList.contains('user-info__button')) {
togglePopup(popupCard); // здесь добавляется класс, который открывает попап
}
if(event.target.classList.contains('user-info__edit')) {
togglePopup(popupProfile); // здесь добавляется класс, который открывает попап
}
};
close(event) {
if(event.target.classList.contains('popup__close-card')) {
togglePopup(popupCard);
}
if(event.target.classList.contains('popup__close-profile')) {
togglePopup(popupProfile);
}
};
}