finally fix

This commit is contained in:
ThatOneCalculator 2022-08-19 14:58:54 -07:00
parent 532c0187f6
commit 1c02c1097d
2 changed files with 7 additions and 9 deletions

View file

@ -1,6 +1,6 @@
{
"name": "misskey",
"version": "12.118.1-calc.10.1",
"version": "12.118.1-calc.10.2",
"codename": "aqua",
"repository": {
"type": "git",

View file

@ -134,15 +134,14 @@ onMounted(() => {
if (!isDesktop.value) {
window.addEventListener('resize', () => {
if (window.innerWidth >= DESKTOP_THRESHOLD) isDesktop.value = true;
let scrollPos = 0;
}, { passive: true });
function checkPosition() {
let windowY = window.scrollY;
postButton.style.transform = `scale(${windowY < scrollPos ? '1' : '0'})`;
scrollPos = windowY;
}
let scrollPos = 0;
window.addEventListener('scroll', checkPosition);
window.addEventListener('scroll', () => {
let windowY = window.scrollY;
postButton.style.transform = `scale(${windowY < scrollPos ? '1' : '0'})`;
scrollPos = windowY;
}, { passive: true });
}
});
@ -183,7 +182,6 @@ function top() {
const wallpaper = localStorage.getItem('wallpaper') != null;
</script>
<style lang="scss" scoped>