()
| 413 | }*/ |
| 414 | // 自动显示帖子内被隐藏的回复 |
| 415 | function showPosts() { |
| 416 | if (menu_value('menu_showhide')) { |
| 417 | let showposts = document.querySelector('#hiddenpoststip a'); |
| 418 | if (showposts) { // 如果存在 |
| 419 | showposts.click(); |
| 420 | } |
| 421 | } |
| 422 | } |
| 423 | // 隐藏帖子内的 [下一页] 按钮 |
| 424 | function hidePgbtn() { |
| 425 | document.lastChild.appendChild(document.createElement('style')).textContent = '.pgbtn {display: none;}'; |
no test coverage detected