Merge branch 'feature_294'

This commit is contained in:
Valery Sizov 2012-01-07 13:24:17 +02:00
commit 9d0794df15

View file

@ -89,6 +89,9 @@ function branchGraph(holder) {
}
(function (c, x, y) {
top.push(r.circle(x, y, 10).attr({fill: "#000", opacity: 0, cursor: "pointer"})
.click(function(){
location.href = location.href.replace("graph", "commits/" + c.id);
})
.hover(function () {
var s = r.text(100, 100,c.author + "\n \n" +c.id + "\n \n" + c.message).attr({fill: "#fff"});
this.popup = r.popupit(x, y + 5, s, 0);