Switch back to live by default

This commit is contained in:
John Firebaugh
2013-03-06 11:02:53 -08:00
parent a694e341fa
commit 5669fa3285
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
iD.Connection = function(context) {
var event = d3.dispatch('auth', 'load'),
url = 'http://api06.dev.openstreetmap.org',
url = 'http://www.openstreetmap.org',
connection = {},
user = {},
keys,
+2 -2
View File
@@ -18,8 +18,8 @@ iD.ui.SourceSwitch = function(context) {
return function(selection) {
selection.append('a')
.attr('href', '#')
.text(t('source_switch.dev'))
.classed('live', false)
.text(t('source_switch.live'))
.classed('live', true)
.on('click', click);
};
};