X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/e19be03313fb226b8397d67dd6dc33d58a1444d0..86bb9e5a50cd38de813705d99ee63ebd4d15e079:/app/views/browse/_changeset_details.html.erb
diff --git a/app/views/browse/_changeset_details.html.erb b/app/views/browse/_changeset_details.html.erb
index 8245936e7..9fb9cb860 100644
--- a/app/views/browse/_changeset_details.html.erb
+++ b/app/views/browse/_changeset_details.html.erb
@@ -36,7 +36,7 @@
@@ -53,7 +53,7 @@
<% @nodes.each do |node| %>
- <%= link_to h(printable_name(node, true)), :action => "node", :id => node.id.to_s %> |
+ <%= link_to h(printable_name(node, true)), { :action => "node", :id => node.id.to_s }, :class => link_class('node', node), :title => link_title(node) %> |
<% end %>
|
@@ -67,7 +67,7 @@
<% @ways.each do |way| %>
- <%= link_to h(printable_name(way, true)), :action => "way", :id => way.id.to_s %> |
+ <%= link_to h(printable_name(way, true)), { :action => "way", :id => way.id.to_s }, :class => link_class('way', way), :title => link_title(way) %> |
<% end %>
<%=
#render :partial => "containing_relation", :collection => changeset_details.containing_relation_members
@@ -84,7 +84,7 @@
<% @relations.each do |relation| %>
- <%= link_to h(printable_name(relation, true)), :action => "relation", :id => relation.id.to_s %> |
+ <%= link_to h(printable_name(relation, true)), { :action => "relation", :id => relation.id.to_s }, :class => link_class('relation', relation), :title => link_title(relation) %> |
<% end %>
|
|