]> 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 f99f17f1e7dcf7d062f2b38d0378d545914a3c64..abbb5918f64e2c8d7bc72e27f87e528f307de4cf 100644 (file)
     $("#tabnav").hide();
 
     $("#content").css("top", "0px");
-    <% if t('html.dir') == "ltr" -%>
-    $("#content").css("left", "0px");
-    <% else -%>
-    $("#content").css("right", "0px");
-    <% end -%>
+    if ($("html").attr("dir") == "ltr") {
+      $("#content").css("left", "0px");
+    } else {
+      $("#content").css("right", "0px");
+    }
 
     handleResize();
   }
     $("#tabnav").show();
 
     $("#content").css("top", "30px");
-    <% if t('html.dir') == "ltr" -%>
-    $("#content").css("left", "185px");
-    <% else -%>
-    $("#content").css("right", "185px");
-    <% end -%>
+    if ($("html").attr("dir") == "ltr") {
+      $("#content").css("left", "185px");
+    } else {
+      $("#content").css("right", "185px");
+    }
 
     handleResize();
   }