()
| 1609 | |
| 1610 | // 移除非问题的内容 |
| 1611 | const removeLiveItems = () => { |
| 1612 | const hotItems = document.querySelectorAll('.HotList-list .HotItem'); |
| 1613 | for (const item of hotItems) { |
| 1614 | if (!isQuestionItem(item)) item.remove(); |
| 1615 | } |
| 1616 | } |
| 1617 | |
| 1618 | // 修复排行榜序号 |
| 1619 | const fixItemRank = () => { |
no test coverage detected