(records)
| 889 | } |
| 890 | |
| 891 | function folderListCallback(records) { |
| 892 | if (!menu_value('menu_fileSort')) return; |
| 893 | for (const event of records) { |
| 894 | // 自己修改的时候不排序 |
| 895 | if (event.removedNodes.length > 0) return; |
| 896 | } |
| 897 | sortFolderList(); |
| 898 | } |
| 899 | |
| 900 | function clickSortButton(by, button) { |
| 901 | if (currentStatus.by === by) { |
nothing calls this directly
no test coverage detected