From: Tom Hughes Date: Mon, 25 Nov 2013 19:14:52 +0000 (+0000) Subject: Remove unneessary return added accidentally X-Git-Tag: live~4629^2~14 X-Git-Url: https://git.openstreetmap.org/rails.git/commitdiff_plain/8482a525c0243cfaff7e65d836075c98fed42e3a Remove unneessary return added accidentally --- diff --git a/app/assets/javascripts/index/browse.js b/app/assets/javascripts/index/browse.js index 69f6e3bc8..c70228501 100644 --- a/app/assets/javascripts/index/browse.js +++ b/app/assets/javascripts/index/browse.js @@ -67,7 +67,7 @@ function initializeBrowse(map) { $('#browse_status').html( $("

") .text(I18n.t("browse.start_rjs.unable_to_load_size", { max_bbox_size: OSM.MAX_REQUEST_AREA, bbox_size: size.toFixed(2) }))); - return false; + return; } var url = "/api/" + OSM.API_VERSION + "/map?bbox=" + bounds.toBBoxString();