mirror of
https://github.com/FoggedLens/iD.git
synced 2026-05-31 20:21:36 +02:00
preset-input-wrap -> form-field-input-wrap
This better describes what it does. Also, took this opportunity to update a bunch of the uifield code (no multi line variable declarations, prefix state variables with _, eliminate unnecessray lodash, etc)
This commit is contained in:
@@ -92,12 +92,12 @@ export function uiFieldCheck(field, context) {
|
||||
checkImpliedYes();
|
||||
selection.classed('checkselect', 'true');
|
||||
|
||||
label = selection.selectAll('.preset-input-wrap')
|
||||
label = selection.selectAll('.form-field-input-wrap')
|
||||
.data([0]);
|
||||
|
||||
var enter = label.enter()
|
||||
.append('label')
|
||||
.attr('class', 'preset-input-wrap');
|
||||
.attr('class', 'form-field-input-wrap');
|
||||
|
||||
enter
|
||||
.append('input')
|
||||
|
||||
Reference in New Issue
Block a user