mirror of
https://github.com/FoggedLens/iD.git
synced 2026-05-15 05:30:35 +02:00
Fix address street input
This commit is contained in:
+1
-1
@@ -674,7 +674,7 @@ div.combobox {
|
||||
border-right: none;
|
||||
}
|
||||
|
||||
.preset-input .addr-streetname {
|
||||
.preset-input .addr-street {
|
||||
width: 80%;
|
||||
}
|
||||
|
||||
|
||||
@@ -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);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user