Temporarily switch back to dev as default

Preset work is causing stability issues.
This commit is contained in:
Ansis Brammanis
2013-02-15 23:31:55 -05:00
parent 87ef7ecf91
commit 984fa76907
2 changed files with 3 additions and 3 deletions

View File

@@ -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,

View File

@@ -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);
};
};