gantt: use content_tag instead of html tag at days headers

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10324 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2012-09-08 02:47:27 +00:00
parent c25d175623
commit d4fc347a8a
1 changed files with 13 additions and 5 deletions

View File

@ -201,11 +201,19 @@
wday = @gantt.date_from.cwday
%>
<% (@gantt.date_to - @gantt.date_from + 1).to_i.times do %>
<% width = zoom - 1 %>
<div style="left:<%= left %>px;top:37px;width:<%= width %>px;height:<%= height %>px;font-size:0.7em;<%= "background:#f1f1f1;" if wday > 5 %>"
class="gantt_hdr">
<%= day_letter(wday) %>
</div>
<%
width = zoom - 1
style = ""
style += "left: #{left}px;"
style += "top:37px;"
style += "width: #{width}px;"
style += "height: #{height}px;"
style += "font-size:0.7em;"
style += 'background:#f1f1f1;' if wday > 5
%>
<%= content_tag(:div, :style => style, :class => "gantt_hdr") do %>
<%= day_letter(wday) %>
<% end %>
<%
left = left + width + 1
wday = wday + 1