1
0
mirror of https://github.com/m1k1o/neko.git synced 2022-02-20 23:41:54 +03:00

remove isTouch, fixes #112.

This commit is contained in:
Miroslav Šedivý
2021-12-07 23:11:51 +01:00
parent 3fae30b182
commit 65b03d9fbb

View File

@@ -1,6 +1,6 @@
<template>
<ul>
<li v-if="!isTouch && seesControl">
<li v-if="seesControl">
<i
:class="[
!disabeld && shakeKbd ? 'shake' : '',
@@ -242,13 +242,6 @@
export default class extends Vue {
@Prop(Boolean) readonly shakeKbd!: boolean
get isTouch() {
return (
(typeof navigator.maxTouchPoints !== 'undefined' ? navigator.maxTouchPoints < 0 : false) ||
'ontouchstart' in document.documentElement
)
}
get severLocked(): boolean {
return 'control' in this.$accessor.locked && this.$accessor.locked['control']
}