fix number input in opera

don't use input[type=number] since the buttons can't be hidden in opera
This commit is contained in:
Ansis Brammanis
2013-03-29 12:58:27 -04:00
parent bc8ab73d1f
commit e75cb7b482

View File

@@ -24,6 +24,9 @@ iD.ui.preset.url = function(field) {
}
if (field.type == 'number') {
input.attr('type', 'text');
var numbercontrols = selection.append('div')
.attr('class', 'spin-control');