From 493a32cdb433c0c35089bc3e6d1bc616ef3e4b4e Mon Sep 17 00:00:00 2001 From: Stas Vilchik Date: Thu, 9 Jan 2014 12:06:06 +0600 Subject: [PATCH] Line wrapping for new timeline widget --- sonar-server/src/main/webapp/javascripts/widgets/timeline.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sonar-server/src/main/webapp/javascripts/widgets/timeline.js b/sonar-server/src/main/webapp/javascripts/widgets/timeline.js index 78edbcf5a4b..fe80a74ba86 100644 --- a/sonar-server/src/main/webapp/javascripts/widgets/timeline.js +++ b/sonar-server/src/main/webapp/javascripts/widgets/timeline.js @@ -360,7 +360,7 @@ window.SonarWidgets = window.SonarWidgets == null ? {} : window.SonarWidgets; // Update events this.gevents .transition() - .attr('transform', function(d) { return trans(widget.time(d.d), widget.availableHeight + 10); }); + .attr('transform', function(d) { return trans(widget.time(d.d), widget.availableHeight + 10 + metricY); }); // Select latest values if this it the first update -- 2.39.5