()
| 378 | |
| 379 | // Get or create tutorial overlay |
| 380 | function getTutorialOverlay() { |
| 381 | let overlay = document.getElementById('carrot-tutorial-overlay'); |
| 382 | if (!overlay) { |
| 383 | overlay = document.createElement('div'); |
| 384 | overlay.id = 'carrot-tutorial-overlay'; |
| 385 | overlay.className = 'carrot-tutorial-overlay'; |
| 386 | document.body.appendChild(overlay); |
| 387 | } |
| 388 | return overlay; |
| 389 | } |
| 390 | |
| 391 | // Position tutorial popup near target element |
| 392 | function positionTutorialPopup(popup, targetRect) { |
no outgoing calls
no test coverage detected