Добрый день.
Прошу помощи, никак не могу пройти восьмую проверку, подтолкните в правильном направлении.
style:
.loading {
pointer-events: none;
script:
cards.forEach((card) => {
card.addEventListener("click", () => {
card.classList.add("opened");
gameEngine(card);
});
});
}
function gameEngine(card) {
if (opened.length === 1) {
field.classList.add("loading");
}
opened.push(card);
addMove();
if (opened[0].getAttribute("type") !== opened[1].getAttribute("type")) {
const newGame = setTimeout(() => {
//opened.forEach((open) => {
// open.classList.remove("opened");
//});
opened[0].classList.remove("opened");
opened[1].classList.remove("opened");
field.classList.remove("loading")
opened = [];
clearTimeout(newGame);
}, 1000);
} else if (opened[0].getAttribute("type") === opened[1].getAttribute("type"))
field.classList.remove("loading");
}