Replies: 2 comments 3 replies
-
@macmessa thank you for your question. Can you expand a little and if possible create a sandbox with the concept, in order to play around. Does you mean the internal observables, available on steps to highlight? or external to attach like resizeObserver or interesectionObserver? Thanks |
Beta Was this translation helpful? Give feedback.
1 reply
-
Should be available in const steps = [
{
selector: '[data-tour="1"]',
content: ({ isHighlightingObserved }) => {
return isHighlightingObserved
? 'Is showing the observed highlighted selector'
: 'text 1'
},
highlightedSelectors: ['.modaaals-modal'],
mutationObservables: ['#portaaal'],
},
{ selector: '[data-tour="2"]', content: 'text 2' },
{ selector: '[data-tour="3"]', content: 'text 3' },
] |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I would like to update the step content after any observable is triggered, is it possible?
Beta Was this translation helpful? Give feedback.
All reactions