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:
Toshi MARUYAMA 2013-04-21 07:34:38 +00:00
parent e59814f981
commit 8387c628cd
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ function drawRevisionGraph(holder, commits_hash, graph_space) {
revisionGraph.circle(x, y, 3)
.attr({
fill: colors[commit.space],
stroke: 'none',
stroke: 'none'
}).toFront();
// paths to parents
$.each(commit.parent_scmids, function(index, parent_scmid) {