X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/a51509c668cb09a28ed35c6cb1a76d15f9afcaa5..fa339033e1f00f4f3e2b9c790c5100a863cf91ac:/app/views/browse/_map.html.erb
diff --git a/app/views/browse/_map.html.erb b/app/views/browse/_map.html.erb
index ed3cc0faf..ed703665d 100644
--- a/app/views/browse/_map.html.erb
+++ b/app/views/browse/_map.html.erb
@@ -1,6 +1,3 @@
-
-
<% if map.instance_of? Changeset or (map.instance_of? Node and map.version > 1) or map.visible? %>
@@ -38,28 +35,26 @@
<%= content_tag "div", "", :id => "small_map", :data => data %>
<%= t 'browse.map.loading' %>
-
- -
- <% if map.instance_of? Note -%>
- <%= link_to t("browse.map.larger.area"),
- root_path(:notes => "yes"),
- :id => "area_larger_map",
- :class => "geolink bbox" %>
- <% else -%>
- <%= link_to t("browse.map.larger.area"),
- root_path(:box => "yes"),
- :id => "area_larger_map",
- :class => "geolink bbox" %>
- <% end -%>
-
- -
- <%= link_to h(t("browse.map.edit.area")) + content_tag(:span, "â¼", :class => "menuicon"),
- edit_path,
- :id => "area_edit",
- :data => { :editor => preferred_editor },
- :class => "geolink bbox" %>
-
-
+
+ -
+ <% if map.instance_of? Note -%>
+ <%= link_to t("browse.map.larger.area"),
+ root_path(:notes => "yes"),
+ :id => "area_larger_map",
+ :class => "geolink bbox" %>
+ <% else -%>
+ <%= link_to t("browse.map.larger.area"),
+ root_path(:box => "yes"),
+ :id => "area_larger_map",
+ :class => "geolink bbox" %>
+ <% end -%>
+
+ -
+ <%= render :partial => 'layouts/edit_menu',
+ :locals => { :link_text => t("browse.map.edit.area"),
+ :link_class => 'bbox' } %>
+
+
<% unless map.instance_of? Changeset %>
@@ -70,11 +65,9 @@
:class => "geolink object" %>
-
- <%= link_to h(t("browse.map.edit." + map.class.to_s.downcase)) + content_tag(:span, "â¼", :class => "menuicon"),
- edit_path,
- :id => "object_edit",
- :data => { :editor => preferred_editor },
- :class => "geolink object" %>
+ <%= render :partial => 'layouts/edit_menu',
+ :locals => { :link_text => t("browse.map.edit." + map.class.to_s.downcase),
+ :link_class => 'object' } %>
<% end %>
@@ -83,25 +76,3 @@
<%= t 'browse.map.deleted' %>
<% end %>
-
-
-
-