X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/e3c88b073660381241bf11ef902d44c4cfbbc1c8..a8f14fb509ba36192744bd194ac278c7edf9f6ab:/app/views/browse/changeset.html.erb
diff --git a/app/views/browse/changeset.html.erb b/app/views/browse/changeset.html.erb
index 0fb60a7bc..fcdc8f155 100644
--- a/app/views/browse/changeset.html.erb
+++ b/app/views/browse/changeset.html.erb
@@ -93,7 +93,11 @@
<%= render :partial => "paging_nav", :locals => { :heading => type_and_paginated_count("way", @way_pages), :pages => @way_pages, :page_param => "way_page" } %>
<% @ways.each do |way| %>
- - <%= link_to printable_name(way, :version => true), { :action => "way", :id => way.way_id.to_s }, { :class => link_class("way", way), :title => link_title(way) } %>
+ - ">
+ <%= element_strikethrough way do %>
+ <%= link_to printable_name(way, :version => true), { :action => "way", :id => way.way_id.to_s }, { :title => link_title(way) } %>
+ <% end %>
+
<% end %>
<% end %>
@@ -102,7 +106,11 @@
<%= render :partial => "paging_nav", :locals => { :heading => type_and_paginated_count("relation", @relation_pages), :pages => @relation_pages, :page_param => "relation_page" } %>
<% @relations.each do |relation| %>
- - <%= link_to printable_name(relation, :version => true), { :action => "relation", :id => relation.relation_id.to_s }, { :class => link_class("relation", relation), :title => link_title(relation) } %>
+ - ">
+ <%= element_strikethrough relation do %>
+ <%= link_to printable_name(relation, :version => true), { :action => "relation", :id => relation.relation_id.to_s }, { :title => link_title(relation) } %>
+ <% end %>
+
<% end %>
<% end %>
@@ -111,7 +119,11 @@
<%= render :partial => "paging_nav", :locals => { :heading => type_and_paginated_count("node", @node_pages), :pages => @node_pages, :page_param => "node_page" } %>
<% @nodes.each do |node| %>
- - <%= link_to printable_name(node, :version => true), { :action => "node", :id => node.node_id.to_s }, { :class => link_class("node", node), :title => link_title(node), :rel => link_follow(node) } %>
+ - ">
+ <%= element_strikethrough node do %>
+ <%= link_to printable_name(node, :version => true), { :action => "node", :id => node.node_id.to_s }, { :title => link_title(node), :rel => link_follow(node) } %>
+ <% end %>
+
<% end %>
<% end %>