(records)
| 880 | } |
| 881 | |
| 882 | function fileListCallback(records) { |
| 883 | if (!menu_value('menu_fileSort')) return; |
| 884 | for (const event of records) { |
| 885 | // 自己修改的时候不排序 |
| 886 | if (event.removedNodes.length > 0) return; |
| 887 | } |
| 888 | sortFileList(); |
| 889 | } |
| 890 | |
| 891 | function folderListCallback(records) { |
| 892 | if (!menu_value('menu_fileSort')) return; |
nothing calls this directly
no test coverage detected