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,33 +240,37 @@ function getOffset() {
}
function enableNav() {
function handleClickPrev() {
if (
["/images", "/images/", "/images/index.html"].includes(
window.location.pathname
)
) {
function handleClickPrev() {
setOffset(getOffset() - getImagesPerPage());
}
function handleClickNext() {
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() {
} else if (
["/videos", "/videos/", "/videos/index.html"].includes(
window.location.pathname
)
) {
setOffset(getOffset() - getVideosPerPage());
}
}
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());
}
}
function handleClickIpp(ipp) {
setVideosPerPage(ipp);
@ -274,6 +278,26 @@ function enableNav() {
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);
url.searchParams.set("VideosPP", ipp);
}
window.location.href = url.href;
}
function handleClickView(view) {