aboutsummaryrefslogtreecommitdiff
path: root/src/shared/settings
diff options
context:
space:
mode:
authorShin'ya Ueoka <ueokande@i-beam.org>2018-01-13 15:31:39 +0900
committerShin'ya Ueoka <ueokande@i-beam.org>2018-01-13 16:24:24 +0900
commit2ca1b54faacb261e5a25331e030da13d07c09662 (patch)
treebf0ea5272e29b54b948c440ab3bd72024f56956e /src/shared/settings
parent42839161bbb1d79c0072b2c2c4cfe67a97f68c97 (diff)
add smoothscroll property
Diffstat (limited to 'src/shared/settings')
-rw-r--r--src/shared/settings/properties.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/shared/settings/properties.js b/src/shared/settings/properties.js
index f695c58..37dc881 100644
--- a/src/shared/settings/properties.js
+++ b/src/shared/settings/properties.js
@@ -4,11 +4,13 @@
// mybool: 'boolean',
const types = {
hintchars: 'string',
+ smoothscroll: 'boolean',
};
// describe default values of a property
const defaults = {
hintchars: 'abcdefghijklmnopqrstuvwxyz',
+ smoothscroll: false,
};
export { types, defaults };