(e: KeyboardEvent)
| 289 | } |
| 290 | |
| 291 | _onKeyDownCapture(e: KeyboardEvent) { |
| 292 | if (!this._table.loading) { |
| 293 | return; |
| 294 | } |
| 295 | |
| 296 | if (isTabNext(e) || isTabPrevious(e)) { |
| 297 | this._focusElement(e.shiftKey ? this._table._beforeElement : this._table._afterElement); |
| 298 | e.stopImmediatePropagation(); |
| 299 | } |
| 300 | } |
| 301 | } |
| 302 | |
| 303 | export default TableNavigation; |
nothing calls this directly
no test coverage detected