From a7e713da154113273f35e37edd47a23f64996b0b Mon Sep 17 00:00:00 2001 From: Quincy Morgan Date: Mon, 21 Jan 2019 11:51:25 -0500 Subject: [PATCH] Fixed an issue in the Areas walkthrough chapter where the user could not proceed after adding the Description field --- modules/ui/intro/area.js | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/modules/ui/intro/area.js b/modules/ui/intro/area.js index e9486edb0..6f20eea0e 100644 --- a/modules/ui/intro/area.js +++ b/modules/ui/intro/area.js @@ -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