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:
commit
e9956092d4
|
@ -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>
|
Loading…
Reference in New Issue