From 502114440511c3904699333f12934c8ce28fccf5 Mon Sep 17 00:00:00 2001 From: "manuel.montes" Date: Tue, 29 May 2018 13:19:20 +0200 Subject: [PATCH] fixed resize in stat_win.php --- pandora_console/operation/agentes/stat_win.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_console/operation/agentes/stat_win.php b/pandora_console/operation/agentes/stat_win.php index 0cb77497fe..a0a23f765a 100644 --- a/pandora_console/operation/agentes/stat_win.php +++ b/pandora_console/operation/agentes/stat_win.php @@ -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'); });