From 1c21b2a38144b2857ca39fa9e3776f4406531d40 Mon Sep 17 00:00:00 2001 From: Tom MacWright Date: Thu, 17 Jan 2013 18:20:24 -0500 Subject: [PATCH] Fix up bbox extent link --- js/id/ui/contributors.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/id/ui/contributors.js b/js/id/ui/contributors.js index 3dc5a4014..c0036a677 100644 --- a/js/id/ui/contributors.js +++ b/js/id/ui/contributors.js @@ -39,8 +39,8 @@ iD.ui.contributors = function(map) { .attr('href', function() { var ext = map.extent(); return 'http://www.openstreetmap.org/browse/changesets?bbox=' + [ - ext[0][0], ext[1][1], - ext[1][0], ext[0][1]]; + ext[0][0], ext[0][1], + ext[1][0], ext[1][1]]; }) .text(' and ' + (u.length - limit) + ' others'); }