Мне сообщили что на моем хостинге может храниться вирус. Причем утверждают что он находится на ЦПУ.
Прислали такой код:
"for(let i = 0; i < title.length; i++){
let totalHeight = 0;
title.addEventListener("click", function(){
let result = this.nextElementSibling;
let activeSibling = this.nextElementSibling.classList.contains('active');
this.classList.toggle('active');
result.classList.toggle("active");
if(!activeSibling) {
for( i= 0; i < result.children.length; i++) {
totalHeight = totalHeight + result.children.scrollHeight + 40;
}
} else {
totalHeight = 0;
}
result.style.maxHeight = totalHeight + "px";
});
}"
Прислали такой код:
"for(let i = 0; i < title.length; i++){
let totalHeight = 0;
title.addEventListener("click", function(){
let result = this.nextElementSibling;
let activeSibling = this.nextElementSibling.classList.contains('active');
this.classList.toggle('active');
result.classList.toggle("active");
if(!activeSibling) {
for( i= 0; i < result.children.length; i++) {
totalHeight = totalHeight + result.children.scrollHeight + 40;
}
} else {
totalHeight = 0;
}
result.style.maxHeight = totalHeight + "px";
});
}"