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
1 changed files with 1 additions and 1 deletions

View File

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