aboutsummaryrefslogtreecommitdiff
path: root/src/components/Tile.vue
diff options
context:
space:
mode:
authorTerry Truong <terry06890@gmail.com>2022-06-30 14:44:10 +1000
committerTerry Truong <terry06890@gmail.com>2022-06-30 14:44:10 +1000
commit5af08938d47504cfc45d125b2ae9898534a1e5a1 (patch)
treee137a40fde6821b62533d941bb836309497d3335 /src/components/Tile.vue
parent5412fb6a567bd573bfd72d7f2ec471a5f2cbb6a6 (diff)
Add ui-option touchDevice
Diffstat (limited to 'src/components/Tile.vue')
-rw-r--r--src/components/Tile.vue4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/Tile.vue b/src/components/Tile.vue
index 7b24590..0105e57 100644
--- a/src/components/Tile.vue
+++ b/src/components/Tile.vue
@@ -426,7 +426,7 @@ export default defineComponent({
// Click handling
onMouseDown(): void {
this.highlight = false;
- if (!this.uiOpts.useDblClick){
+ if (!this.uiOpts.touchDevice){
// Wait for a mouseup or click-hold
clearTimeout(this.clickHoldTimer);
this.clickHoldTimer = setTimeout(() => {
@@ -448,7 +448,7 @@ export default defineComponent({
}
},
onMouseUp(): void {
- if (!this.uiOpts.useDblClick){
+ if (!this.uiOpts.touchDevice){
if (this.clickHoldTimer > 0){
clearTimeout(this.clickHoldTimer);
this.clickHoldTimer = 0;