Skip to content
Snippets Groups Projects
Commit 561a0e3a authored by Sato Hiroyuki's avatar Sato Hiroyuki Committed by GitLab
Browse files

Fix not showing tooltip on network graph

parent 639b0a87
No related branches found
No related tags found
2 merge requests!2940Expanding repos and hooks paths in settings,!2769Fix not showing tooltip on network graph
Loading
Loading
@@ -65,15 +65,15 @@
 
BranchGraph.prototype.buildGraph = function(){
var graphWidth = $(this.element).width()
, ch = this.mspace * 20 + 20
, cw = Math.max(graphWidth, this.mtime * 20 + 20)
, ch = this.mspace * 20 + 100
, cw = Math.max(graphWidth, this.mtime * 20 + 260)
, r = Raphael(this.element.get(0), cw, ch)
, top = r.set()
, cuday = 0
, cumonth = ""
, offsetX = 20
, offsetY = 60
, barWidth = Math.max(graphWidth, this.dayCount * 20 + 80);
, barWidth = Math.max(graphWidth, this.dayCount * 20 + 320);
this.raphael = r;
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment