()
| 45 | } |
| 46 | |
| 47 | export function refreshActiveHighlight() { |
| 48 | const activeHighlight = getState("__activeElement"); |
| 49 | const activeStep = getState("__activeStep")!; |
| 50 | |
| 51 | if (!activeHighlight) { |
| 52 | return; |
| 53 | } |
| 54 | |
| 55 | trackActiveElement(activeHighlight); |
| 56 | refreshOverlay(); |
| 57 | repositionPopover(activeHighlight, activeStep); |
| 58 | } |
| 59 | |
| 60 | function transferHighlight(toElement: Element, toStep: DriveStep) { |
| 61 | const duration = getConfig("duration") || 400; |
nothing calls this directly
no test coverage detected
searching dependent graphs…