()
| 728 | return null |
| 729 | } |
| 730 | const resizeHandler = () => { |
| 731 | clearTimeout(this.resizeTimeout) |
| 732 | this.resizeTimeout = setTimeout(() => { |
| 733 | logger('Window resized', 'debug') |
| 734 | if (!isPlaylistPage()) GridManager.updateGrid() |
| 735 | }, CONFIG.DEBOUNCE_DELAY) |
| 736 | } |
| 737 | const loadHandler = () => { |
| 738 | logger('Page loaded', 'debug') |
| 739 | this.handleNavigation() |
nothing calls this directly
no test coverage detected