From d3f336483096f94ebf0a76f2694787682846a425 Mon Sep 17 00:00:00 2001 From: Daniel Barbero Martin <daniel.barbero@artica.es> Date: Tue, 27 Apr 2021 11:06:17 +0200 Subject: [PATCH] Fixed errors display tab ehorus --- .../operation/agentes/ver_agente.php | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/pandora_console/operation/agentes/ver_agente.php b/pandora_console/operation/agentes/ver_agente.php index 8c7ace237c..667e483ffd 100644 --- a/pandora_console/operation/agentes/ver_agente.php +++ b/pandora_console/operation/agentes/ver_agente.php @@ -1926,3 +1926,21 @@ switch ($tab) { } break; } +?> + +<script type="text/javascript"> + // I do not understand, nor do I agree with this operation, but it is what it is. + $(document).ready (function () { + $('.ehorus_tab').hover(ehorus_tab_show, ehorus_tab_hide); + }); + + function ehorus_tab_show() { + $('.subsubmenu').show("fast"); + } + + function ehorus_tab_hide() { + setTimeout(function() { + $('.subsubmenu').hide("fast"); + },15000); + } +</script> \ No newline at end of file