Fixed errors display tab ehorus
This commit is contained in:
parent
8a5f5992ac
commit
d3f3364830
|
@ -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