diff options
author | Alex Yatskov <FooSoft@users.noreply.github.com> | 2019-03-07 11:31:06 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-07 11:31:06 -0800 |
commit | c7f8d0874a758924802179a44757153bbf18bf7f (patch) | |
tree | 3191c8015cc23667c4089cd551ec521183b61ac8 /ext/bg/js/options.js | |
parent | 27fb9643e471dbd1c0e6a19023a449bf7688bd71 (diff) | |
parent | 0b8ae6c53a4b5b358a0af0617ccada019630d683 (diff) |
Merge pull request #157 from toasted-nutbread/touch-input
Add support for touch input
Diffstat (limited to 'ext/bg/js/options.js')
-rw-r--r-- | ext/bg/js/options.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/bg/js/options.js b/ext/bg/js/options.js index 373a1a6b..f1e02e18 100644 --- a/ext/bg/js/options.js +++ b/ext/bg/js/options.js @@ -190,6 +190,7 @@ function optionsSetDefaults(options) { debugInfo: false, maxResults: 32, showAdvanced: false, + popupDisplayMode: 'default', popupWidth: 400, popupHeight: 250, popupOffset: 10, @@ -201,6 +202,7 @@ function optionsSetDefaults(options) { scanning: { middleMouse: true, + touchInputEnabled: true, selectText: true, alphanumeric: true, autoHideResults: false, |