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)
|
||||
}
|
||||
}
|
||||
onTouchHandler(event: TouchEvent) {
|
||||
let touches = event.changedTouches
|
||||
let first = touches[0]
|
||||
|
||||
onTouchHandler(e: TouchEvent) {
|
||||
let first = e.changedTouches[0]
|
||||
let type = ''
|
||||
switch (event.type) {
|
||||
switch (e.type) {
|
||||
case 'touchstart':
|
||||
type = 'mousedown'
|
||||
break
|
||||
|
Loading…
Reference in New Issue
Block a user