* Create the element and set up the FloatingUI instance * @private
()
| 699 | * @private |
| 700 | */ |
| 701 | _setupElements() { |
| 702 | if (!isUndefined(this.el)) { |
| 703 | this.destroy(); |
| 704 | } |
| 705 | |
| 706 | this.el = this._createTooltipContent(); |
| 707 | |
| 708 | if (this.options.advanceOn) { |
| 709 | bindAdvance(this); |
| 710 | } |
| 711 | |
| 712 | // The tooltip implementation details are handled outside of the Step |
| 713 | // object. |
| 714 | setupTooltip(this); |
| 715 | } |
| 716 | |
| 717 | /** |
| 718 | * Triggers `before-show`, generates the tooltip DOM content, |
no test coverage detected