]> source.dussan.org Git - redmine.git/commitdiff
gantt: code layout cleanup line_for_issue method of lib/redmine/helpers/gantt.rb
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Mon, 10 Sep 2012 22:56:15 +0000 (22:56 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Mon, 10 Sep 2012 22:56:15 +0000 (22:56 +0000)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10346 e93f8b46-1217-0410-a6f0-8f06a7374b81

lib/redmine/helpers/gantt.rb

index 8763c81ba33ab795a7fe7cedd0a4ed699267aa1e..7ef93b014d8af0c7b88363419bd50e221ccc5180 100644 (file)
@@ -353,10 +353,13 @@ module Redmine
         # Skip issues that don't have a due_before (due_date or version's due_date)
         if issue.is_a?(Issue) && issue.due_before
           coords = coordinates(issue.start_date, issue.due_before, issue.done_ratio, options[:zoom])
-          label = "#{ issue.status.name } #{ issue.done_ratio }%"
+          label = "#{issue.status.name} #{issue.done_ratio}%"
           case options[:format]
           when :html
-            html_task(options, coords, :css => "task " + (issue.leaf? ? 'leaf' : 'parent'), :label => label, :issue => issue, :markers => !issue.leaf?)
+            html_task(options, coords,
+                      :css => "task " + (issue.leaf? ? 'leaf' : 'parent'),
+                      :label => label, :issue => issue,
+                      :markers => !issue.leaf?)
           when :image
             image_task(options, coords, :label => label)
           when :pdf