2023-09-29 01:10:05 +00:00
|
|
|
const standalone = navigator.standalone || window.matchMedia("(display-mode: standalone)").matches;
|
2023-06-30 19:39:19 +00:00
|
|
|
if (standalone) {
|
|
|
|
const img = document.getElementById("pulltorefresh-img");
|
|
|
|
const defaultImg = "/e/marseythinkorino.webp";
|
|
|
|
const thresholdImg = "/e/marseythumbsup.webp";
|
|
|
|
const threshold = -100;
|
2023-07-03 00:26:20 +00:00
|
|
|
|
2023-08-03 13:50:33 +00:00
|
|
|
addEventListener("touchend", () => {
|
2023-09-29 01:10:05 +00:00
|
|
|
if (window.scrollY < threshold) {
|
2023-07-14 17:04:12 +00:00
|
|
|
location.reload();
|
2023-06-30 19:39:19 +00:00
|
|
|
}
|
|
|
|
});
|
2023-07-03 00:26:20 +00:00
|
|
|
|
2023-08-03 13:50:33 +00:00
|
|
|
addEventListener("scroll", () => {
|
2023-09-29 01:10:05 +00:00
|
|
|
img.setAttribute("src", window.scrollY < threshold ? thresholdImg : defaultImg);
|
2023-06-30 19:39:19 +00:00
|
|
|
});
|
|
|
|
} else {
|
2023-07-22 23:49:45 +00:00
|
|
|
const pulltorefresh = document.getElementById("pulltorefresh")
|
|
|
|
if (pulltorefresh) pulltorefresh.remove();
|
2023-06-30 19:39:19 +00:00
|
|
|
}
|