]> git.openstreetmap.org Git - rails.git/blobdiff - app/assets/javascripts/index/export.js
Make sure the hash updates properly on browse pages
[rails.git] / app / assets / javascripts / index / export.js
index fd658c53236922e1125ce55cdc6af2901acd8651..1efac1b31baf6ea1f007a4d6b32da847677a918a 100644 (file)
@@ -36,7 +36,7 @@ OSM.Export = function(map) {
   }
 
   function setBounds(bounds) {
-    var precision = zoomPrecision(map.getZoom());
+    var precision = OSM.zoomPrecision(map.getZoom());
     $("#minlon").val(bounds.getWest().toFixed(precision));
     $("#minlat").val(bounds.getSouth().toFixed(precision));
     $("#maxlon").val(bounds.getEast().toFixed(precision));
@@ -53,6 +53,10 @@ OSM.Export = function(map) {
     $("#export_commit").toggle(getBounds().getSize() < OSM.MAX_REQUEST_AREA);
   }
 
+  function checkSubmit(e) {
+    if (getBounds().getSize() > OSM.MAX_REQUEST_AREA) e.preventDefault();
+  }
+
   page.pushstate = page.popstate = function(path) {
     $("#export_tab").addClass("current");
     OSM.loadSidebarContent(path, page.load);
@@ -65,7 +69,7 @@ OSM.Export = function(map) {
 
     $("#maxlat, #minlon, #maxlon, #minlat").change(boundsChanged);
     $("#drag_box").click(enableFilter);
-    $("#sidebar_content .close").on("click", page.minimizeSidebar);
+    $(".export_form").on("submit", checkSubmit);
 
     update();
     return map.getState();