Merge branch 'ent-7399-Problemas-integracion-Ehorus-en-Pandora-FMS' into 'develop'

Fixed errors display tab ehorus

See merge request artica/pandorafms!4078
This commit is contained in:
Daniel Rodriguez 2021-04-28 11:24:45 +00:00
commit e9956092d4
1 changed files with 18 additions and 0 deletions

View File

@ -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>