mirror of
https://github.com/wah-su/wahs.wah.su.git
synced 2025-04-05 15:54:37 +00:00
why they are were not defined ???
This commit is contained in:
parent
a2cfae043e
commit
11fb22a7a0
1 changed files with 48 additions and 24 deletions
|
@ -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) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue