FTUE: Don't hide until after 'show' functions have run

This commit is contained in:
Jonathon Wilson 2013-06-23 18:05:03 -06:00
parent 825bd14ebb
commit 2fc35cedd2
1 changed files with 1 additions and 1 deletions

View File

@ -479,11 +479,11 @@
$myTitle.html(stepDialogTitle);
}
// Hide all steps:
$('[layout-wizard-step]').hide();
// Invoke the 'show' function, if present prior to actually showing.
if (context._.contains(context._.keys(wizardShowFunctions), targetStepId)) {
wizardShowFunctions[targetStepId]();
}
$('[layout-wizard-step]').hide();
$targetStep.show();
}