]> source.dussan.org Git - redmine.git/commitdiff
scm: fix revision graph left padding
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Fri, 4 May 2012 17:07:38 +0000 (17:07 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Fri, 4 May 2012 17:07:38 +0000 (17:07 +0000)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9621 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/views/repositories/_revisions.html.erb

index d3059520b22103f9dcde962ffa0c0f5378523799..3833e9788f20800ebc67e483c6be34870c1d1e50 100644 (file)
@@ -33,7 +33,10 @@ end %>
 <% line_num = 1 %>
 <% revisions.each do |changeset| %>
 <tr class="changeset <%= cycle 'odd', 'even' %>">
-<td class="id"<%= show_revision_graph ? " style=\"padding-left:#{(graph_space + 1) * 20}px\"" : '' %>><%= link_to_revision(changeset, @repository) %></td>
+<% id_style = (show_revision_graph ? "padding-left:#{(graph_space + 1) * 20}px" : nil) %>
+<%= content_tag(:td, :class => 'id', :style => id_style) do %>
+  <%= link_to_revision(changeset, @repository) %>
+<% end %>
 <td class="checkbox"><%= radio_button_tag('rev', changeset.identifier, (line_num==1), :id => "cb-#{line_num}", :onclick => "$('cbto-#{line_num+1}').checked=true;") if show_diff && (line_num < revisions.size) %></td>
 <td class="checkbox"><%= radio_button_tag('rev_to', changeset.identifier, (line_num==2), :id => "cbto-#{line_num}", :onclick => "if ($('cb-#{line_num}').checked==true) {$('cb-#{line_num-1}').checked=true;}") if show_diff && (line_num > 1) %></td>
 <td class="committed_on"><%= format_time(changeset.committed_on) %></td>