mirror of
https://github.com/osmarks/website
synced 2025-08-30 01:07:57 +00:00
Fix links
This commit is contained in:
@@ -111,10 +111,10 @@ url: /infipage/p
|
||||
var canonical = encodeBignum(page)
|
||||
if (canonical !== afterSlash) {
|
||||
console.log(canonical, afterSlash, "Mismatch!")
|
||||
window.location.href = `/infipage/${canonical}`
|
||||
window.location.href = "/infipage/" + canonical
|
||||
}
|
||||
prev.href = encodeBignum(page.minus(1))
|
||||
next.href = encodeBignum(page.plus(1))
|
||||
prev.href = "/infipage/" + encodeBignum(page.minus(1))
|
||||
next.href = "/infipage/" + encodeBignum(page.plus(1))
|
||||
pagecount.innerText = "Page " + pageString
|
||||
}
|
||||
loadPage()
|
||||
|
Reference in New Issue
Block a user