mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-14 05:57:32 -07:00
fix: 🐛 swipe left goes back a page
This commit is contained in:
parent
54cc147d6f
commit
3e1369daff
2 changed files with 2 additions and 2 deletions
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "misskey",
|
||||
"version": "12.118.1-calc.10.3",
|
||||
"version": "12.118.1-calc.11",
|
||||
"codename": "aqua",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
|
|
@ -285,7 +285,7 @@ if (isMobile.value) {
|
|||
console.log('left swipe');
|
||||
next =
|
||||
timelines[
|
||||
(timelines.indexOf(src) + 1) % timelines.length
|
||||
(timelines.indexOf(src) - 1) % timelines.length
|
||||
];
|
||||
}
|
||||
saveSrc(next);
|
||||
|
|
Loading…
Reference in a new issue