From: Aaron Lidman Date: Tue, 19 Nov 2013 02:44:48 +0000 (-0800) Subject: Fixed export filter X-Git-Tag: live~4653^2~42 X-Git-Url: https://git.openstreetmap.org/rails.git/commitdiff_plain/c0b082990115797f3a697c216443829833c00b1c Fixed export filter --- diff --git a/app/assets/javascripts/index/export.js b/app/assets/javascripts/index/export.js index 3d1dd3ce3..053f5169f 100644 --- a/app/assets/javascripts/index/export.js +++ b/app/assets/javascripts/index/export.js @@ -14,11 +14,9 @@ OSM.Export = function(map) { function boundsChanged() { var bounds = getBounds(); - map.fitBounds(bounds); locationFilter.setBounds(bounds); - - enableFilter(); + locationFilter.enable(); validateControls(); } @@ -29,6 +27,7 @@ OSM.Export = function(map) { locationFilter.setBounds(map.getBounds().pad(-0.2)); locationFilter.enable(); + validateControls(); } function update() {