Guide not Starting on First Step

Problem Description: Guide doesn't start on first step

Steps to reproduce: Start the guide from the Help widget. This is an important detail - if you start the guide from the DevTools console, it will work properly. So, for example, when you choose a guide from the HelpMe widget, instead of starting on the first step, the guide starts on 8th step

Resolution

iridize.adfApp = true;

Add the above to the config.js file in the extension.

Sample:

+++++++++++++

var ir_app_settings = {

"H2KN4GjLSO+zPiyRhWDgKw": [

'iridize.env="dev";',

'iridize.min=""; //this line is only for testing. remove this line in production.',

'iridize.useSessionStorage=true;',

'iridize.contextualMode=false;',

'iridize.autoSegmentation = true;',

'iridize.adfApp = true;'

]

};

var ir_url_mapping =

{ 'https://ucf5-zaxe-fa-ext.oracledemos.com': "H2KN4GjLSO+zPiyRhWDgKw" }

;

++++++++++++++