Skip to content
Snippets Groups Projects
Commit 51da023e authored by Chris Hallberg's avatar Chris Hallberg
Browse files

Fix hierarchy tree scrolling.

parent 7495a80f
No related merge requests found
......@@ -168,19 +168,10 @@ $(document).ready(function hierarchyTreeReady() {
});
// Scroll to the current record
if ($('#hierarchyTree').parents('#modal').length > 0) {
var hTree = $('#hierarchyTree');
var offsetTop = hTree.offset().top;
var maxHeight = Math.max($(window).height() - 200, 200);
hTree.css('max-height', maxHeight + 'px').css('overflow', 'auto');
hTree.animate({
scrollTop: $('.jstree-clicked').offset().top - offsetTop + hTree.scrollTop() - 50
}, 1500);
} else {
$('html,body').animate({
scrollTop: $('.jstree-clicked').offset().top - 50
}, 1500);
}
var hTree = $('#hierarchyTree');
hTree.animate({
scrollTop: $('.jstree-clicked').offset().top - hTree.offset().top + hTree.scrollTop() - 50
}, 1000);
})
.jstree({
plugins: ['search', 'types'],
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment