Graph: is done. v1
This commit is contained in:
parent
94690bd2c4
commit
c89682605f
2 changed files with 6 additions and 8 deletions
|
@ -473,8 +473,5 @@ body.project-page table .commit {
|
|||
border: solid 1px #999;
|
||||
cursor: move;
|
||||
height: 70%;
|
||||
overflow: scroll;
|
||||
position: absolute;
|
||||
width: auto;
|
||||
margin: 6ex 3ex 0ex 0ex;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
|
|
@ -37,7 +37,8 @@ function branchGraph(holder) {
|
|||
r = Raphael("holder", cw, ch),
|
||||
top = r.set();
|
||||
var cuday = 0, cumonth = "";
|
||||
r.rect(0,0,days.length*20+20,40).attr({fill: "#999"});
|
||||
r.rect(0, 0, days.length * 20 + 20, 20).attr({fill: "#474D57"});
|
||||
r.rect(0, 20, days.length * 20 + 20, 20).attr({fill: "#f7f7f7"});
|
||||
|
||||
for (mm = 0; mm < days.length; mm++) {
|
||||
if(days[mm] != null){
|
||||
|
|
Loading…
Reference in a new issue