(table)
| 6 | static moduleName = "tooltip"; |
| 7 | |
| 8 | constructor(table){ |
| 9 | super(table); |
| 10 | |
| 11 | this.tooltipSubscriber = null, |
| 12 | this.headerSubscriber = null, |
| 13 | |
| 14 | this.timeout = null; |
| 15 | this.popupInstance = null; |
| 16 | |
| 17 | // this.registerTableOption("tooltipGenerationMode", undefined); //deprecated |
| 18 | this.registerTableOption("tooltipDelay", 300); |
| 19 | |
| 20 | this.registerColumnOption("tooltip"); |
| 21 | this.registerColumnOption("headerTooltip"); |
| 22 | } |
| 23 | |
| 24 | initialize(){ |
| 25 | this.deprecatedOptionsCheck(); |
nothing calls this directly
no test coverage detected