We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b95d7c4 commit 54ff1b1Copy full SHA for 54ff1b1
intro.js
@@ -306,7 +306,7 @@
306
backdrop = backdrop || createBackdrop();
307
308
if(isFunction(step.intro)){
309
- intro = step.intro();
+ intro = step.intro(step.template);
310
}else{
311
intro = step.intro;
312
}
@@ -316,7 +316,7 @@
316
hint.setTarget(step.element || $('body'));
317
hint.setPosition(step.hintPosition);
318
hint.setTooltipPosition(step.tooltipPosition);
319
- hint.setContent(step.intro);
+ hint.setContent(intro);
320
highlightElement(step.element);
321
return hint.render();
322
};
0 commit comments