* Attach a custom wheel event handler (Phase 2) * Returns true to prevent default handling
(
customWheelEventHandler?: (event: WheelEvent) => boolean
)
| 816 | * Returns true to prevent default handling |
| 817 | */ |
| 818 | public attachCustomWheelEventHandler( |
| 819 | customWheelEventHandler?: (event: WheelEvent) => boolean |
| 820 | ): void { |
| 821 | this.customWheelEventHandler = customWheelEventHandler; |
| 822 | } |
| 823 | |
| 824 | // ========================================================================== |
| 825 | // Link Detection Methods |