Fixed errors display tab ehorus

This commit is contained in:
Daniel Barbero Martin 2021-04-27 11:06:17 +02:00
parent 8a5f5992ac
commit d3f3364830
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>