fix code indent of gantt days headers

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10310 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2012-09-07 11:59:05 +00:00
parent 9c5f339efb
commit d1eb07dd8b
1 changed files with 10 additions and 10 deletions

View File

@ -150,16 +150,16 @@ if show_days
height = g_height + header_heigth - 1
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>
<%
left = left + width + 1
wday = wday + 1
wday = 1 if wday > 7
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>
<%
left = left + width + 1
wday = wday + 1
wday = 1 if wday > 7
end
end %>