]> git.openstreetmap.org Git - rails.git/blobdiff - app/assets/javascripts/edit.js
Make full screen mode in Potlatch work properly again
[rails.git] / app / assets / javascripts / edit.js
index 0b2b329b5d358223c4c1487737a9ad8813a2d768..7eaa24e9813ce97fab79958364ab518297ed0070 100644 (file)
@@ -5,9 +5,9 @@ function maximiseMap() {
 
   $("#content").css("top", "0px");
   if ($("html").attr("dir") == "ltr") {
-    $("#content").css("left", "0px");
+    $("#content").css("margin-left", "0px");
   } else {
-    $("#content").css("right", "0px");
+    $("#content").css("margin-right", "0px");
   }
 
   handleResize();
@@ -20,9 +20,9 @@ function minimiseMap() {
 
   $("#content").css("top", "30px");
   if ($("html").attr("dir") == "ltr") {
-    $("#content").css("left", "185px");
+    $("#content").css("margin-left", "185px");
   } else {
-    $("#content").css("right", "185px");
+    $("#content").css("margin-right", "185px");
   }
 
   handleResize();