Remove unnecessary wrapper

This commit is contained in:
John Firebaugh
2013-03-25 11:59:02 -07:00
parent afe5aa788c
commit 4222256c78
+1 -4
View File
@@ -61,10 +61,7 @@ iD.ui.preset.address = function(field, context) {
.on('change', change)
.call(close());
var streetwrap = wrap.append('span')
.attr('class', 'input-wrap-position');
street = streetwrap.append('input')
street = wrap.append('input')
.property('type', 'text')
.attr('placeholder', field.t('placeholders.street'))
.attr('class', 'addr-street')