fix JavaScript error of revision_graph.js on IE7 (#13823)
Contributed by Filou Centrinov. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@11738 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
e59814f981
commit
8387c628cd
|
@ -43,7 +43,7 @@ function drawRevisionGraph(holder, commits_hash, graph_space) {
|
||||||
revisionGraph.circle(x, y, 3)
|
revisionGraph.circle(x, y, 3)
|
||||||
.attr({
|
.attr({
|
||||||
fill: colors[commit.space],
|
fill: colors[commit.space],
|
||||||
stroke: 'none',
|
stroke: 'none'
|
||||||
}).toFront();
|
}).toFront();
|
||||||
// paths to parents
|
// paths to parents
|
||||||
$.each(commit.parent_scmids, function(index, parent_scmid) {
|
$.each(commit.parent_scmids, function(index, parent_scmid) {
|
||||||
|
|
Loading…
Reference in New Issue