From 7677d593467e7cc29cf10f28301152776c027bd2 Mon Sep 17 00:00:00 2001 From: Terry Truong Date: Tue, 28 Jun 2022 22:24:55 +1000 Subject: Use double-taps on mobile --- src/App.vue | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/App.vue') diff --git a/src/App.vue b/src/App.vue index f67cbb1..42a4cd9 100644 --- a/src/App.vue +++ b/src/App.vue @@ -3,7 +3,7 @@ :style="{backgroundColor: uiOpts.bgColor}">
-

Tilo

+

Tilo (prototype)

@@ -86,7 +86,8 @@ import HelpIcon from './components/icon/HelpIcon.vue'; import {TolNode, TolMap, getServerResponse, Action, UiOptions} from './lib'; import {LayoutNode, LayoutOptions, LayoutTreeChg} from './layout'; import {initLayoutTree, initLayoutMap, tryLayout} from './layout'; -import {getBreakpoint, getScrollBarWidth, arraySum, randWeightedChoice, timeout} from './util'; +import {getBreakpoint, getScrollBarWidth, isTouchDevice, + arraySum, randWeightedChoice, timeout} from './util'; // Type representing auto-mode actions type AutoAction = 'move across' | 'move down' | 'move up' | Action; @@ -162,6 +163,7 @@ function getDefaultUiOpts(lytOpts: LayoutOptions): UiOptions { searchJumpMode: false, tutorialSkip: false, disabledActions: new Set() as Set, + useDblClick: isTouchDevice(), }; } const lytOptPrefix = 'LYT '; // Used when saving to localStorage -- cgit v1.2.3