Fixed an issue in the Areas walkthrough chapter where the user could not proceed after adding the Description field

This commit is contained in:
Quincy Morgan
2019-01-21 11:51:25 -05:00
parent 263ecbf0c0
commit a7e713da15
+8 -1
View File
@@ -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