* [bug#126742,done,1.3h] fix scroll failure.

This commit is contained in:
tianshujie
2024-08-21 15:13:09 +08:00
committed by 刘梦艺
parent 15f3bf0b47
commit 432e7d3a74
+1 -1
View File
@@ -6,7 +6,7 @@ $(function()
initWaterfallGanttBlock();
}
$('#ganttContainer').off('scroll').on('scroll', function(e) {
$('#ganttPlans').scrollTop = e.target.scrollTop;
$('#ganttPlans')[0].scrollTop = e.target.scrollTop;
});
});