Update:Remove toast for mark as finished #718

This commit is contained in:
advplyr 2023-06-18 14:26:04 -05:00
parent 953bde5a42
commit 5a953464ab
7 changed files with 41 additions and 116 deletions

View file

@ -316,7 +316,7 @@ export default {
if (this.touchstartTime && Date.now() - this.touchstartTime < 250) {
return
}
console.log('touchstart', e)
this.touchstartX = e.touches[0].screenX
this.touchstartY = e.touches[0].screenY
this.touchstartTime = Date.now()
@ -326,7 +326,7 @@ export default {
if (this.touchIdentifier !== e.changedTouches[0].identifier) {
return
}
console.log('touchend', e)
this.touchendX = e.changedTouches[0].screenX
this.touchendY = e.changedTouches[0].screenY
this.handleGesture()