summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>2013-04-21 07:34:38 +0000
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>2013-04-21 07:34:38 +0000
commit8387c628cd30c6992af1d9429989cac6e782e22c (patch)
tree1c8a0745af47b171c114aac13438de0866d4f712
parente59814f9819514103f0b6dbe9009d85cbbcee8e5 (diff)
downloadredmine-8387c628cd30c6992af1d9429989cac6e782e22c.tar.gz
redmine-8387c628cd30c6992af1d9429989cac6e782e22c.zip
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
-rw-r--r--public/javascripts/revision_graph.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/public/javascripts/revision_graph.js b/public/javascripts/revision_graph.js
index c389cb58e..33843cc5d 100644
--- a/public/javascripts/revision_graph.js
+++ b/public/javascripts/revision_graph.js
@@ -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) {