]> source.dussan.org Git - redmine.git/commitdiff
fix code indent of gantt days headers
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Fri, 7 Sep 2012 11:59:05 +0000 (11:59 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Fri, 7 Sep 2012 11:59:05 +0000 (11:59 +0000)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10310 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/views/gantts/show.html.erb

index ae6a972362afc1cdd338f9c1b04cb4bf03f350f3..ad905925b53264b7759dba63b33b2926e2421fc5 100644 (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 %>