(overlay, showPrev, showNext)
| 562 | } |
| 563 | |
| 564 | function setNavVisibility(overlay, showPrev, showNext) { |
| 565 | const prev = overlay.querySelector('.nav-left'); |
| 566 | const next = overlay.querySelector('.nav-right'); |
| 567 | prev.style.display = showPrev ? 'flex' : 'none'; |
| 568 | next.style.display = showNext ? 'flex' : 'none'; |
| 569 | } |
| 570 | |
| 571 | function setRowWatchedBadge(name, watched) { |
| 572 | try { |