fix: 🐛 swipe left goes back a page
This commit is contained in:
parent
5e9d1ee478
commit
817ccb5b32
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "misskey",
|
"name": "misskey",
|
||||||
"version": "12.118.1-calc.10.3",
|
"version": "12.118.1-calc.11",
|
||||||
"codename": "aqua",
|
"codename": "aqua",
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
|
|
@ -285,7 +285,7 @@ if (isMobile.value) {
|
||||||
console.log('left swipe');
|
console.log('left swipe');
|
||||||
next =
|
next =
|
||||||
timelines[
|
timelines[
|
||||||
(timelines.indexOf(src) + 1) % timelines.length
|
(timelines.indexOf(src) - 1) % timelines.length
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
saveSrc(next);
|
saveSrc(next);
|
||||||
|
|
Loading…
Reference in New Issue