var blogContainer = document.getElementsByClassName('blog-container__blog-items')[0].clientHeight;
var buttonShow = document.getElementsByClassName('blog-container__button-show')[0];
function blogItems(container, show) {
if (container > (container / 2)) {
show.onclick = function onHide() {
document.getElementsByClassName('blog-container__blog-items')[0].classList.add('overflow_blog-item');
return false
}
} else {
show.onclick = function onNice() {
document.getElementsByClassName('blog-container__blog-items')[0].classList.remove('overflow_blog-item');
return false
}
}
}
Срабатывает только первый if. Потом как будто все умирает не могу понять в чем причина