gantt: fix unit gantt helper test fails

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10356 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2012-09-11 01:53:34 +00:00
parent 66f881aad3
commit 3f7a7d9b14
1 changed files with 9 additions and 9 deletions

View File

@ -706,18 +706,18 @@ module Redmine
if coords[:bar_start] && coords[:bar_end]
width = coords[:bar_end] - coords[:bar_start] - 2
style = ""
style << "top: #{params[:top]}px;"
style << "left: #{coords[:bar_start]}px;"
style << "width: #{width}px;"
style << "top:#{params[:top]}px;"
style << "left:#{coords[:bar_start]}px;"
style << "width:#{width}px;"
output << view.content_tag(:div, '&nbsp;'.html_safe,
:style => style,
:class => "#{options[:css]} task_todo")
if coords[:bar_late_end]
width = coords[:bar_late_end] - coords[:bar_start] - 2
style = ""
style << "top: #{params[:top]}px;"
style << "left: #{coords[:bar_start]}px;"
style << "width: #{width}px;"
style << "top:#{params[:top]}px;"
style << "left:#{coords[:bar_start]}px;"
style << "width:#{width}px;"
output << view.content_tag(:div, '&nbsp;'.html_safe,
:style => style,
:class => "#{options[:css]} task_late")
@ -725,9 +725,9 @@ module Redmine
if coords[:bar_progress_end]
width = coords[:bar_progress_end] - coords[:bar_start] - 2
style = ""
style << "top: #{params[:top]}px;"
style << "left: #{coords[:bar_start]}px;"
style << "width: #{width}px;"
style << "top:#{params[:top]}px;"
style << "left:#{coords[:bar_start]}px;"
style << "width:#{width}px;"
output << view.content_tag(:div, '&nbsp;'.html_safe,
:style => style,
:class => "#{options[:css]} task_done")