()
| 1925 | } |
| 1926 | |
| 1927 | function getFileListCursorPageSize() { |
| 1928 | const raw = parseInt(window.itemsPerPage || localStorage.getItem('itemsPerPage') || '50', 10); |
| 1929 | const value = Number.isFinite(raw) ? raw : 50; |
| 1930 | return Math.max(FILE_LIST_CURSOR_PAGE_SIZE_MIN, Math.min(FILE_LIST_CURSOR_PAGE_SIZE_MAX, value)); |
| 1931 | } |
| 1932 | |
| 1933 | function getPaneFileListPaging(pane) { |
| 1934 | const state = getPaneState(pane); |
no outgoing calls
no test coverage detected