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,16 +37,17 @@ 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){
|
||||
if(cuday != days[mm][0]){
|
||||
r.text(10+mm*20,30,days[mm][0]).attr({font: "12px Fontin-Sans, Arial", fill: "#444"});
|
||||
r.text(10 + mm * 20, 30, days[mm][0]).attr({font: "12px Fontin-Sans, Arial", fill: "#444"});
|
||||
cuday = days[mm][0]
|
||||
}
|
||||
if(cumonth != days[mm][1]){
|
||||
r.text(10+mm*20,10,days[mm][1]).attr({font: "12px Fontin-Sans, Arial", fill: "#444"});
|
||||
r.text(10 + mm * 20, 10, days[mm][1]).attr({font: "12px Fontin-Sans, Arial", fill: "#444"});
|
||||
cumonth = days[mm][1]
|
||||
}
|
||||
|
||||
|
@ -62,7 +63,7 @@ function branchGraph(holder) {
|
|||
if (shortrefs.length > 15){
|
||||
shortrefs = shortrefs.substr(0,13) + "...";
|
||||
}
|
||||
var t = r.text(x+5,y+5,shortrefs).attr({font: "12px Fontin-Sans, Arial", fill: "#666",
|
||||
var t = r.text(x+5, y+5, shortrefs).attr({font: "12px Fontin-Sans, Arial", fill: "#666",
|
||||
title: longrefs, cursor: "pointer", rotation: "90"});
|
||||
|
||||
var textbox = t.getBBox();
|
||||
|
|
Loading…
Reference in a new issue