fixed resize in stat_win.php

This commit is contained in:
manuel.montes 2018-05-29 13:19:20 +02:00
parent aa1e7ff4d2
commit 5021144405

View File

@ -557,6 +557,6 @@ ui_include_time_picker(true);
}); });
$(window).resize(function() { $(window).resize(function() {
$("#field_list").css('height', ($(window).height() - 160) + 'px'); $("#field_list").css('height', ($(document).height() - 160) + 'px');
}); });
</script> </script>