()
| 754 | }; |
| 755 | |
| 756 | const bindCoordinatorInteractionXChange = (): void => { |
| 757 | unbindCoordinatorInteractionXChange(); |
| 758 | if (disposed) return; |
| 759 | if (!coordinator) return; |
| 760 | |
| 761 | unsubscribeCoordinatorInteractionXChange = coordinator.onInteractionXChange((x, source) => { |
| 762 | emit('crosshairMove', { x, source }); |
| 763 | }); |
| 764 | }; |
| 765 | |
| 766 | const recreateCoordinator = (): void => { |
| 767 | if (disposed) return; |
no test coverage detected