let tmp2 = false
$('.but').on('click', function(e){
e.preventDefault();
var footer_height_ise = document.querySelector('.back').scrollHeight;
$('.back').css('max-height', footer_height_ise);
if (tmp2 == true) $('.back').css('max-height', '');
tmp2 = true;
})
let tmp2 = false
$('.but').on('click', function(e){
e.preventDefault();
var footer_height_ise = document.querySelector('.back').scrollHeight;
if (tmp2 == false) { $('.back').css('max-height', footer_height_ise); tmp2 = true; }
else if (tmp2 == true) { $('.back').css('max-height', ''); tmp2 = false; }
})