X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/734697ebb6cc27057fd8bb1d078a175ca5f45406..e0fd80c42848abbf1d7c74be112eccd48f00e8ef:/app/views/site/edit.rhtml?ds=sidebyside diff --git a/app/views/site/edit.rhtml b/app/views/site/edit.rhtml index 7d07895f8..ceb4702d4 100644 --- a/app/views/site/edit.rhtml +++ b/app/views/site/edit.rhtml @@ -1,4 +1,8 @@ -<% if API_STATUS != :online %> +<% if API_STATUS == :offline %> +
The OpenStreetMap database is currently offline while + essential database maintenance work is carried out. +
+<% elsif API_STATUS == :readonly %>The OpenStreetMap database is currently in read-only mode while essential database maintenance work is carried out.
@@ -9,7 +13,8 @@ <% end %> <% end %> -<%= render :partial => 'search', :locals => { :onopen => "resizeMap();", :onclose => "resizeMap();" } %> +<%= render :partial => 'sidebar', :locals => { :onopen => "resizeMap();", :onclose => "resizeMap();" } %> +<%= render :partial => 'search' %> <% session[:token] = @user.tokens.create.token unless session[:token] %> @@ -64,14 +69,14 @@ } function resizeMap() { - var search_results_width = $("search_results").offsetWidth; + var sidebar_width = $("sidebar").offsetWidth; - if (search_results_width > 0) { - search_results_width = search_results_width + 5 + if (sidebar_width > 0) { + sidebar_width = sidebar_width + 5 } - $("map").style.left = (search_results_width) + "px"; - $("map").style.width = ($("content").offsetWidth - search_results_width) + "px"; + $("map").style.left = (sidebar_width) + "px"; + $("map").style.width = ($("content").offsetWidth - sidebar_width) + "px"; $("map").style.height = ($("content").offsetHeight - 2) + "px"; }