mirror of
https://github.com/FoggedLens/iD.git
synced 2026-05-15 13:38:26 +02:00
Fixed an issue in the Areas walkthrough chapter where the user could not proceed after adding the Description field
This commit is contained in:
@@ -331,7 +331,14 @@ export function uiIntroArea(context, reveal) {
|
||||
|
||||
d3_select('.more-fields .combobox-input')
|
||||
.on('click.intro', function() {
|
||||
continueTo(chooseDescriptionField);
|
||||
// Watch for the combobox to appear...
|
||||
var watcher;
|
||||
watcher = window.setInterval(function() {
|
||||
if (!d3_select('div.combobox').empty()) {
|
||||
window.clearInterval(watcher);
|
||||
continueTo(chooseDescriptionField);
|
||||
}
|
||||
}, 300);
|
||||
});
|
||||
}, 300); // after "Add Field" visible
|
||||
|
||||
|
||||
Reference in New Issue
Block a user