diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2013-04-21 07:34:27 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2013-04-21 07:34:27 +0000 |
commit | e59814f9819514103f0b6dbe9009d85cbbcee8e5 (patch) | |
tree | 4d740129d43e194031bfa2de0f4c49e23bd9d13e /public/javascripts/gantt.js | |
parent | fe903be48079730afe78194d92533ff023d71af9 (diff) | |
download | redmine-e59814f9819514103f0b6dbe9009d85cbbcee8e5.tar.gz redmine-e59814f9819514103f0b6dbe9009d85cbbcee8e5.zip |
fix JavaScript error of gantt.js on IE7 (#13823)
Contributed by Filou Centrinov.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@11737 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'public/javascripts/gantt.js')
-rw-r--r-- | public/javascripts/gantt.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/public/javascripts/gantt.js b/public/javascripts/gantt.js index 295487c09..ba0af9ebd 100644 --- a/public/javascripts/gantt.js +++ b/public/javascripts/gantt.js @@ -93,7 +93,7 @@ function drawRelations() { .attr({stroke: "none", fill: color, "stroke-linecap": "butt", - "stroke-linejoin": "miter", + "stroke-linejoin": "miter" }); }); } |