]> git.openstreetmap.org Git - rails.git/blobdiff - app/views/site/edit.html.erb
Eliminate interpolation in edit JS
[rails.git] / app / views / site / edit.html.erb
index d68b989df628a39e10577a46b099c9037c2fcd6a..abbb5918f64e2c8d7bc72e27f87e528f307de4cf 100644 (file)
@@ -9,15 +9,9 @@
 <p><%= raw t 'site.edit.not_public_description', :user_page => (link_to t('site.edit.user_page_link'), {:controller => 'user', :action => 'account', :display_name => @user.display_name, :anchor => 'public'}) %></p>
 <p><%= raw t 'site.edit.anon_edits', :link => link_to(t('site.edit.anon_edits_link_text'), t('site.edit.anon_edits_link')) %></p>
 <% else %>
-<% content_for :greeting do %>
-<% if @user and !@user.home_lon.nil? and !@user.home_lat.nil? %>
-<%= link_to t("layouts.home"), "#", :class => "set_position", :data => { :lat => @user.home_lat, :lon => @user.home_lon, :zoom => 15 }, :title => t("layouts.home_tooltip") %> |
-<% end %>
-<% end %>
-
-<%= render :partial => 'sidebar', :locals => { :onopen => "resizeMap();", :onclose => "resizeMap();" } %>
+<%= render :partial => 'home_link' %>
+<%= render :partial => 'sidebar' %>
 <%= render :partial => 'search' %>
-<%= render :partial => 'resize' %>
 
 <%= render :partial => preferred_editor %>
 
     $("#greeting").hide();
     $("#tabnav").hide();
 
-    $("#content").css("top", "10px");
-    <% if t('html.dir') == "ltr" -%>
-    $("#content").css("left", "10px");
-    <% else -%>
-    $("#content").css("right", "10px");
-    <% end -%>
+    $("#content").css("top", "0px");
+    if ($("html").attr("dir") == "ltr") {
+      $("#content").css("left", "0px");
+    } else {
+      $("#content").css("right", "0px");
+    }
 
     handleResize();
   }
     $("#greeting").show();
     $("#tabnav").show();
 
-    $("#content").css("top", "35px");
-    <% if t('html.dir') == "ltr" -%>
-    $("#content").css("left", "192px");
-    <% else -%>
-    $("#content").css("right", "192px");
-    <% end -%>
+    $("#content").css("top", "30px");
+    if ($("html").attr("dir") == "ltr") {
+      $("#content").css("left", "185px");
+    } else {
+      $("#content").css("right", "185px");
+    }
 
     handleResize();
   }