()
| 105 | } |
| 106 | |
| 107 | destroy(): void { |
| 108 | for (const cleanup of this.mobileKeyboardFocusCleanups) { |
| 109 | cleanup(); |
| 110 | } |
| 111 | this.mobileKeyboardFocusCleanups = []; |
| 112 | |
| 113 | const win = this.getWindow(); |
| 114 | for (const timer of this.mobileKeyboardScrollTimers) { |
| 115 | win.clearTimeout(timer); |
| 116 | } |
| 117 | this.mobileKeyboardScrollTimers = []; |
| 118 | this.elements.containerEl.removeClass("is-mobile-keyboard-focused"); |
| 119 | this.pendingTitleFocusScrollPositions = null; |
| 120 | } |
| 121 | |
| 122 | captureTitleFocusScrollPositions( |
| 123 | input: TaskModalTitleInputElement |
nothing calls this directly
no test coverage detected