]> git.openstreetmap.org Git - rails.git/blobdiff - app/views/site/edit.html.erb
Fix interpolation issues in attribution text
[rails.git] / app / views / site / edit.html.erb
index 84de929541dfc2235571a3d4617677f136f012ba..dadb9e4e584d53e03ad22e0547ea958f28241436 100644 (file)
 <% else %>
 <% content_for :greeting do %>
 <% if @user and !@user.home_lon.nil? and !@user.home_lat.nil? %>
-<%= link_to_function t('layouts.home'), "setPosition(#{@user.home_lat}, #{@user.home_lon}, 10)", { :title => t('layouts.home_tooltip') } %> |
+<%= 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 => 'sidebar' %>
 <%= render :partial => 'search' %>
-<%= render :partial => 'resize' %>
 
 <%= render :partial => preferred_editor %>
 
     $("#greeting").hide();
     $("#tabnav").hide();
 
-    $("#content").css("top", "10px");
+    $("#content").css("top", "0px");
     <% if t('html.dir') == "ltr" -%>
-    $("#content").css("left", "10px");
+    $("#content").css("left", "0px");
     <% else -%>
-    $("#content").css("right", "10px");
+    $("#content").css("right", "0px");
     <% end -%>
 
     handleResize();
     $("#greeting").show();
     $("#tabnav").show();
 
-    $("#content").css("top", "35px");
+    $("#content").css("top", "30px");
     <% if t('html.dir') == "ltr" -%>
-    $("#content").css("left", "192px");
+    $("#content").css("left", "185px");
     <% else -%>
-    $("#content").css("right", "192px");
+    $("#content").css("right", "185px");
     <% end -%>
 
     handleResize();