]> source.dussan.org Git - redmine.git/commitdiff
remove trailing white-spaces from app/views/files/index.html.erb
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Sat, 17 Sep 2011 12:07:37 +0000 (12:07 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Sat, 17 Sep 2011 12:07:37 +0000 (12:07 +0000)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7341 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/views/files/index.html.erb

index 0844fa35576044601983846670ac8367d0dfdab7..a1b884850ad531581025aa5c7f9394ebfaa446db 100644 (file)
@@ -16,7 +16,7 @@
     <th></th>
   </tr></thead>
   <tbody>
-<% @containers.each do |container| %>  
+<% @containers.each do |container| %>
   <% next if container.attachments.empty? -%>
   <% if container.is_a?(Version) -%>
   <tr>
@@ -25,7 +25,7 @@
     </th>
   </tr>
   <% end -%>
-  <% container.attachments.each do |file| %>    
+  <% container.attachments.each do |file| %>
   <tr class="file <%= cycle("odd", "even") %>">
     <td class="filename"><%= link_to_attachment file, :download => true, :title => file.description %></td>
     <td class="created_on"><%= format_time(file.created_on) %></td>
@@ -36,7 +36,7 @@
     <%= link_to(image_tag('delete.png'), {:controller => 'attachments', :action => 'destroy', :id => file},
                                          :confirm => l(:text_are_you_sure), :method => :post) if delete_allowed %>
     </td>
-  </tr>    
+  </tr>
   <% end
   reset_cycle %>
 <% end %>