summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas F. K. Jorna <[email protected]>2021-07-26 17:16:25 +0200
committerThomas F. K. Jorna <[email protected]>2021-07-26 17:16:25 +0200
commit654e71bfacc273a964a5b620e98bd504cef85460 (patch)
treeb367e1987c00f0ec9b092a6b0eae9826829fcb46
parentedf7afa78316ed8c6574ebbd7668c6e65001859e (diff)
removed initialMouse
-rw-r--r--components/config.ts13
1 files changed, 0 insertions, 13 deletions
diff --git a/components/config.ts b/components/config.ts
index a60c626..7cfe85a 100644
--- a/components/config.ts
+++ b/components/config.ts
@@ -49,19 +49,6 @@ export const initialFilter = {
date: [],
}
-// 0: never
-// 1: hover
-// 2: click
-// 3: doubleclick
-// 4: rightclick
-export const initialMouse = {
- highlight: 1,
- select: 2,
- open: 2,
- local: 3,
- follow: 4,
-}
-
function getAlgos(option?: boolean) {
const options: string[] = []
const algorithms: { [name: string]: (percent: number) => number } = {}