()
| 256 | }, |
| 257 | |
| 258 | goPrevious() { |
| 259 | const previousPatterns = Settings.get("previousPatterns") || ""; |
| 260 | const previousStrings = previousPatterns.split(",").filter((s) => s.trim().length); |
| 261 | const target = findElementWithRelValue("prev") || findLink(previousStrings); |
| 262 | if (target) followLink(target); |
| 263 | }, |
| 264 | |
| 265 | goNext() { |
| 266 | const nextPatterns = Settings.get("nextPatterns") || ""; |
nothing calls this directly
no test coverage detected