(e)
| 640 | |
| 641 | function initTooltip () { |
| 642 | const mouseenterHandler = (e) => { |
| 643 | const target = e.target; |
| 644 | const text = target.getAttribute('tooltip'); |
| 645 | if (text) { |
| 646 | showTooltip(target, text); |
| 647 | } |
| 648 | }; |
| 649 | const mouseleaveHandler = (e) => { |
| 650 | const target = e.target; |
| 651 | const text = target.getAttribute('tooltip'); |
nothing calls this directly
no test coverage detected