forked from marktext/marktext
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.js
More file actions
64 lines (61 loc) · 894 Bytes
/
config.js
File metadata and controls
64 lines (61 loc) · 894 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
export const titleBarStyleOptions = [{
label: 'Custom',
value: 'custom'
}, {
label: 'Native',
value: 'native'
}]
export const zoomOptions = [{
label: '50.0%',
value: 0.5
}, {
label: '62.5%',
value: 0.625
}, {
label: '75.0%',
value: 0.75
}, {
label: '87.5%',
value: 0.875
}, {
label: '100.0%',
value: 1.0
}, {
label: '112.5%',
value: 1.125
}, {
label: '125.0%',
value: 1.25
}, {
label: '137.5%',
value: 1.375
}, {
label: '150.0%',
value: 1.5
}, {
label: '162.5%',
value: 1.625
}, {
label: '175.0%',
value: 1.75
}, {
label: '187.5%',
value: 1.875
}, {
label: '200.0%',
value: 2.0
}]
export const fileSortByOptions = [{
label: 'Creation time',
value: 'created'
}, {
label: 'Modification time',
value: 'modified'
}, {
label: 'Title',
value: 'title'
}]
export const languageOptions = [{
label: 'English',
value: 'en'
}]