angular-intro.js
angular-intro.js copied to clipboard
problem with dynamic elements (e.g. ng-if)
i see a lot of people here with the same problem i recommend the developers to upgrade the 'ngIntroRefreshMethod' to include something like this:
angular.forEach(intro._introItems, function (step, key) {
step.element = document.querySelector(intro._options.steps[key].element);
step.position = document.querySelector(intro._options.steps[key].position);
});
Im facing the same issue as well. Steps show as undefined if they are defined through a script. Did you add this to this function on angular-into.js? d.ngIntroRefreshMethod=function(){g.refresh()};