()
| 426 | } |
| 427 | // 快捷回到顶部(右键左右两侧空白处) |
| 428 | function backToTop() { |
| 429 | document.body.oncontextmenu = function (event) { |
| 430 | if (event.target == this) { |
| 431 | event.preventDefault(); |
| 432 | window.scrollTo(0, 0) |
| 433 | } |
| 434 | } |
| 435 | } |
| 436 | // 收起帖子预览(左键左右两侧空白处) |
| 437 | function collapsedNowPost() { |
| 438 | document.body.onclick = function (event) { |
no outgoing calls
no test coverage detected