mirror of
https://github.com/m1k1o/neko.git
synced 2024-07-24 14:40:50 +12:00
lint.
This commit is contained in:
parent
aee7650d47
commit
df634be1c5
@ -690,11 +690,11 @@
|
|||||||
}, 100)
|
}, 100)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
onTouchHandler(event: TouchEvent) {
|
|
||||||
let touches = event.changedTouches
|
onTouchHandler(e: TouchEvent) {
|
||||||
let first = touches[0]
|
let first = e.changedTouches[0]
|
||||||
let type = ''
|
let type = ''
|
||||||
switch (event.type) {
|
switch (e.type) {
|
||||||
case 'touchstart':
|
case 'touchstart':
|
||||||
type = 'mousedown'
|
type = 'mousedown'
|
||||||
break
|
break
|
||||||
|
Loading…
Reference in New Issue
Block a user