Fix address street input

This commit is contained in:
John Firebaugh
2013-02-26 17:01:10 -08:00
parent 9efa81b100
commit 85e8db192d
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -674,7 +674,7 @@ div.combobox {
border-right: none;
}
.preset-input .addr-streetname {
.preset-input .addr-street {
width: 80%;
}
+2 -2
View File
@@ -56,12 +56,12 @@ iD.ui.preset.address = function() {
var streetwrap = selection.append('span')
.attr('class', 'input-wrap-position')
.datum({ 'key': 'addr:streetname' });
.datum({ 'key': 'addr:street' });
streetwrap.append('input')
.property('type', 'text')
.attr('placeholder', 'Oak Street')
.attr('class', 'addr-streetname')
.attr('class', 'addr-street')
.on('blur', change)
.on('change', change);