Skip to content
Snippets Groups Projects
Commit 175e09f1 authored by Sato Hiroyuki's avatar Sato Hiroyuki
Browse files

Change graph element size.

parent 351c9521
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -47,14 +47,14 @@ class BranchGraph
 
buildGraph: ->
graphWidth = $(@element).width()
ch = @mspace * 20 + 100
ch = @mspace * 10 + 100
cw = Math.max(graphWidth, @mtime * 20 + 260)
r = Raphael(@element.get(0), cw, ch)
top = r.set()
cuday = 0
cumonth = ""
@offsetX = 20
@offsetY = 60
@offsetY = 50
barWidth = Math.max(graphWidth, @days.length * 20 + 320)
@scrollLeft = cw
@raphael = r
Loading
Loading
@@ -64,7 +64,7 @@ class BranchGraph
for day, mm in @days
if cuday isnt day[0]
# Dates
r.text(@offsetX + mm * 20, 31, day[0])
r.text(@offsetX + mm * 20, 30, day[0])
.attr(
font: "12px Monaco, monospace"
fill: "#DDD"
Loading
Loading
@@ -73,7 +73,7 @@ class BranchGraph
 
if cumonth isnt day[1]
# Months
r.text(@offsetX + mm * 20, 11, day[1])
r.text(@offsetX + mm * 20, 10, day[1])
.attr(
font: "12px Monaco, monospace"
fill: "#EEE"
Loading
Loading
Loading
Loading
@@ -12,7 +12,7 @@
.graph {
background: #f1f1f1;
cursor: move;
height: 70%;
height: 500px;
overflow: hidden;
}
}
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