why they are were not defined ???

This commit is contained in:
Kentai Radiquum 2025-02-01 17:48:02 +05:00
parent a2cfae043e
commit 11fb22a7a0
Signed by: Radiquum
GPG key ID: 858E8EE696525EED

View file

@ -240,40 +240,64 @@ function getOffset() {
} }
function enableNav() { function enableNav() {
if ( function handleClickPrev() {
["/images", "/images/", "/images/index.html"].includes( if (
window.location.pathname ["/images", "/images/", "/images/index.html"].includes(
) window.location.pathname
) { )
function handleClickPrev() { ) {
setOffset(getOffset() - getImagesPerPage()); setOffset(getOffset() - getImagesPerPage());
} } else if (
["/videos", "/videos/", "/videos/index.html"].includes(
function handleClickNext() { window.location.pathname
setOffset(getOffset() + getImagesPerPage()); )
} ) {
function handleClickIpp(ipp) {
setImagesPerPage(ipp);
const url = new URL(window.location.toString());
url.searchParams.set("ImagesPP", ipp);
window.location.href = url.href;
}
} else {
function handleClickPrev() {
setOffset(getOffset() - getVideosPerPage()); setOffset(getOffset() - getVideosPerPage());
} }
}
function handleClickNext() { function handleClickNext() {
if (
["/images", "/images/", "/images/index.html"].includes(
window.location.pathname
)
) {
setOffset(getOffset() + getImagesPerPage());
} else if (
["/videos", "/videos/", "/videos/index.html"].includes(
window.location.pathname
)
) {
setOffset(getOffset() + getVideosPerPage()); setOffset(getOffset() + getVideosPerPage());
} }
}
function handleClickIpp(ipp) { function handleClickIpp(ipp) {
setVideosPerPage(ipp);
const url = new URL(window.location.toString());
url.searchParams.set("VideosPP", ipp);
window.location.href = url.href;
}
function handleClickIpp(ipp) {
const url = new URL(window.location.toString());
if (
["/images", "/images/", "/images/index.html"].includes(
window.location.pathname
)
) {
setImagesPerPage(ipp);
url.searchParams.set("ImagesPP", ipp);
} else if (
["/videos", "/videos/", "/videos/index.html"].includes(
window.location.pathname
)
) {
setVideosPerPage(ipp); setVideosPerPage(ipp);
const url = new URL(window.location.toString());
url.searchParams.set("VideosPP", ipp); url.searchParams.set("VideosPP", ipp);
window.location.href = url.href;
} }
window.location.href = url.href;
} }
function handleClickView(view) { function handleClickView(view) {