()
| 1594 | } |
| 1595 | |
| 1596 | function goNextComic() |
| 1597 | { |
| 1598 | const hasComic = readingManga() ? dom.previousComic() : dom.nextComic(); |
| 1599 | |
| 1600 | if(hasComic) |
| 1601 | { |
| 1602 | let speed = _config.readingViewSpeed; |
| 1603 | _config.readingViewSpeed = 0; |
| 1604 | |
| 1605 | let double = goEnd(); |
| 1606 | if(double) goEnd(); |
| 1607 | |
| 1608 | _config.readingViewSpeed = speed; |
| 1609 | } |
| 1610 | } |
| 1611 | |
| 1612 | var scrollNextOrPrevComicDelayed = false, scrollNextOrPrevComicST = false; |
| 1613 |
nothing calls this directly
no test coverage detected