Fix up bbox extent link

This commit is contained in:
Tom MacWright
2013-01-17 18:20:24 -05:00
parent 7df1a00f38
commit 1c21b2a381
+2 -2
View File
@@ -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');
}