From 984fa7690750a9d6590f3d4e0043fad800fdd063 Mon Sep 17 00:00:00 2001 From: Ansis Brammanis Date: Fri, 15 Feb 2013 23:31:55 -0500 Subject: [PATCH] Temporarily switch back to dev as default Preset work is causing stability issues. --- js/id/connection.js | 2 +- js/id/ui/source_switch.js | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/js/id/connection.js b/js/id/connection.js index 76e2ab495..5872811c8 100644 --- a/js/id/connection.js +++ b/js/id/connection.js @@ -1,7 +1,7 @@ iD.Connection = function(context) { var event = d3.dispatch('auth', 'load'), - url = 'http://www.openstreetmap.org', + url = 'http://api06.dev.openstreetmap.org', connection = {}, user = {}, version, diff --git a/js/id/ui/source_switch.js b/js/id/ui/source_switch.js index 624e26af4..082857a36 100644 --- a/js/id/ui/source_switch.js +++ b/js/id/ui/source_switch.js @@ -18,8 +18,8 @@ iD.ui.SourceSwitch = function(context) { return function(selection) { selection.append('a') .attr('href', '#') - .text(t('source_switch.live')) - .classed('live', true) + .text(t('source_switch.dev')) + .classed('live', false) .on('click', click); }; };