Feature: #75386 - Get identifier in slide callback
See forge#75386
Description
The callback of Wizard.
now has a new parameter identifier
.
Impact
The identifier is passed to the callback function of Wizard.
.
Example code:
Wizard.addSlide('my-identifier', 'Foobar', '', Severity.info, function($slide, settings, identifier) {
console.log(identifier); // my-identifier
});
Copied!