Remove unneessary return added accidentally

This commit is contained in:
Tom Hughes 2013-11-25 19:14:52 +00:00
parent 87bf5e73d4
commit 8482a525c0

View file

@ -67,7 +67,7 @@ function initializeBrowse(map) {
$('#browse_status').html(
$("<p class='warning'></p>")
.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();