fix(vertical menu): fix display of vertical menu

Fixed bug with vertical popup menu for categories not displaying properly with large category sets.

Fix #69
This commit is contained in:
Ryan Prather 2019-01-14 17:41:37 -05:00
parent 99eb5342cf
commit 601d417e6b
No known key found for this signature in database
GPG Key ID: 66FDE2B4E8AB87A7

View File

@ -56,6 +56,9 @@ elseif (preg_match('/report/', $script_name)) {
if (id && typeof id == 'string') {
$('#' + id).show();
}
var ele = $('#' + id).parent().children('dt');
$('#' + id).css('left', ele.position().left + ele.width());
$('#' + id).css('top', ele.position().top + ele.height());
}
</script>